search for: data1ori

Displaying 1 result from an estimated 1 matches for "data1ori".

2001 Sep 27
2
Getting your stuff organized in R
...ost often work with data that have been selected or sampled from the original file. As R automatically will load your .RData in memory, it's more efficient not to load any large object unless you really need it. You can save the original file to a different file with: >save(data1.ori,"data1ori.rda") and then you can delete the object from your workspace: the next .Rdata file that you'll make by using save.image() or by quiting R and saving the workspace, will not include data1.ori. 6. If it happens that you need data1.ori afterwards, you should use >attach("data1ori.r...