The easiest way is let S-Plus do all the work.
attach() the old _Data to to S-Plus 6 and copy the objects you need.
> attach("../rmh/12.s99/_Data")
> search()[1:2]
[1] "c:\\HOME\\hh-user" "../rmh/12.s99/_Data"
> find(ex2)
[1] "../rmh/12.s99/_Data"
> objects(2, pat="ex2")
[1] "ex2"
> ex2[1:5]
[1] 46 14 38 62 91
> ex2 <- ex2
> find(ex2)
[1] "c:\\HOME\\hh-user" "../rmh/12.s99/_Data"
>
---- Original message ----
>Date: Fri, 23 Sep 2005 10:50:35 +0200 (CEST)
>From: ad@cs.uu.nl
>Subject: [S] Exporting data from Splus 4.5
>To: s-news@lists.biostat.wustl.edu
>
>Dear all,
>
>I have some splus 4.5 (windows) data objects that I want to
>convert to splus 6 for windows. When I export the data from
>splus 4.5 to a data file (e.g. txt or xls format) all floating
>point numbers are for some reason rounded to two decimal places!
>I've tried a lot of things, but there seems to be no way around
>this problem.
>
>Does anybody know how to solve this problem?
>
>Bye,
>
>-Ad Feelders
>
>
>--------------------------------------------------------------------
>This message was distributed by s-news@lists.biostat.wustl.edu. To
>unsubscribe send e-mail to s-news-request@lists.biostat.wustl.edu with
>the BODY of the message: unsubscribe s-news
|