Displaying 1 result from an estimated 1 matches for "debt2006".
Did you mean:
debt2005
2011 Aug 12
2
Getting data from an *.RData file into a data.frame object.
...t
at the client site.
Now, I need to get that data file into a data.frame object. I know this
should be simple, but I can't seem to find out how to do that. I tried the
following. First, after opening R without doing anything, RGui used 35,008
KB of memory. I submitted the following.
> debt2006 <- load("T:/R.Data/table2006.RData")
Memory used by RGui jumped to 191,512 KB. So, it looks like the data
loaded. However, debt2005 is of type character instead of data.frame.
> ls()
[1] "debt2005"
> class(debt2005)
[1] "character"
>
Help, please.
Ed...