Re: [R] Saving R objects

2006-07-24 Thread Nair, Murlidharan T
] Sent: Sun 7/23/2006 10:11 PM To: Nair, Murlidharan T Cc: r-help@stat.math.ethz.ch Subject: Re: [R] Saving R objects It depends on what information you want to save and how the program on the other end needs it. For the save version I would at least use ascii = TRUE to get it in a more readable

Re: [R] Saving R objects

2006-07-24 Thread Gabor Grothendieck
-help@stat.math.ethz.ch Subject: Re: [R] Saving R objects It depends on what information you want to save and how the program on the other end needs it. For the save version I would at least use ascii = TRUE to get it in a more readable fashion. Look at file.show(mult_test.dat) file.show

[R] Saving R objects

2006-07-23 Thread Nair, Murlidharan T
I am trying to find the best way to save the follwoing object I am creating library(multcomp) data(recovery) Dcirec-simint(minutes~blanket, data=recovery, conf.level=0.9, alternative=less) I am probably not doing it the most efficient way I think. Here is what I am doing a-print(Dcirec)

Re: [R] Saving R objects

2006-07-23 Thread Gabor Grothendieck
It depends on what information you want to save and how the program on the other end needs it. For the save version I would at least use ascii = TRUE to get it in a more readable fashion. Look at file.show(mult_test.dat) file.show(mult.out) # but use ascii=TRUE on your save statement. to see