Skip to content
Prev 278570 / 398502 Next

how "big" (in RAM and/or disk storage) is each of these objects in a list?

On Sat, 26 Nov 2011 12:41:08 -0600
Paul Johnson <pauljohn32 at gmail.com> wrote:

            
As an initial step, what is the result of running ls() with your RData
file loaded?  You should get a list of what is in memory.  Using RData
files can be as space-efficient or costly as the user's habits.  Did you
use save() or the save.image() command to produce the file? The
save.image() command stashes what is in memory and if you've run a
number of experimental procedures that did not pan out and you did not
discard with the results with rm(), they were saved to the rdata file
along with the information you did want, a procedure rather like filing
away all your work in a file drawer and then emptying the waste basket
into the drawer as well. If you save the data with ascii = TRUE as an
option, you can troll through the file and read what you saved.

JWD