I cannot seem to read in my very large data set. I have tried to adjust the memory but to no avail. Any advice you could offer would be greatly appreciated. Thanks, Andrea. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
I don't know whether this was your problem, but several times I've found that I can't read in a "dump"ed R object, but can read in a corresponding text file (read.table). Strangely enough, I found I couldn't read in an R object that I had been able to create. But if you're trying to read an R object, recreating it and saving it as some sort of text table, and reading it in using read.table might work. Hope this helps, Matt Wiener -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
On Mon, 22 Mar 1999, default wrote:> I cannot seem to read in my very large data set. I have tried to adjust > the memory but to no avail. Any advice you could offer would be greatly > appreciated.R statics allocates memory space at start time, it defaults to 8 Megs. So in unix try: $ R --vsize 16M (or more) in Windows: Create a shortcut to the Rgui binary and add a similar command option to the shortcut. In Emacs ESS mode C-u M-x R, and then add --vsize xxM in the first prompt Nicholas -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._