Re: [R] viewing, editing and saving an RDATA file

2020-07-22 Thread Bert Gunter
Inline Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Wed, Jul 22, 2020 at 2:29 PM Robert Baer wrote: > You may misunderstand how RData files work. Note tha

Re: [R] viewing, editing and saving an RDATA file

2020-07-22 Thread Robert Baer
You may misunderstand how RData files work.  Note that RData files are not necessarily JUST a single variable unless they were explicitly written to store a single variable only. If you save a single variable (a dataframe, for example) named 'mydata' with save(mydata, file = "saveddata.RData")

Re: [R] viewing, editing and saving an RDATA file

2020-07-22 Thread David Winsemius
On 7/21/20 9:11 PM, Jason Levy wrote: Dear R Scholars Many R users have successfully loaded and used the attached WVS RDATA file into my R program. You appear to have made a common mistake in assuming that attachments of any sort can be processed by the Rhelp mail-server. Only attachments o

Re: [R] viewing, editing and saving an RDATA file

2020-07-22 Thread Jim Lemon
Hi Jason, I assume that you actually have "WVS.RData" in your working directory when you try to load it. Otherwise you will get an error message. If you don't get an error message when you do this: load("WVS.RData") there will be a new object in your workspace. So if you want to see what the obje

[R] viewing, editing and saving an RDATA file

2020-07-22 Thread Jason Levy
Dear R Scholars Many R users have successfully loaded and used the attached WVS RDATA file into my R program. I would just would like help viewing, editing etc. It is only one line of code to load in. *load('WVS.RData')* I would like help on how to view, edit and save this 2.461 MB RData file. The