Re: [R] R memory issues

2014-11-12 Thread ce
you may try to increase virtual memory : http://windows.microsoft.com/en-us/windows/change-virtual-memory-size#1TC=windows-7 -Original Message- From: eliza botto [eliza_bo...@hotmail.com] Date: 11/11/2014 02:35 PM To: r-help@r-project.org r-help@r-project.org Subject: [R] R memory issues

Re: [R] R memory issues

2014-11-12 Thread Prof Brian Ripley
botto [eliza_bo...@hotmail.com] Date: 11/11/2014 02:35 PM To: r-help@r-project.org r-help@r-project.org Subject: [R] R memory issues Dear useRs, I have this funny thing going on with me since morning. I am 32 bit window 7 system with 4 GB RAM(2.95 usable). I tried to run a code on it but when I

[R] R memory issues

2014-11-11 Thread eliza botto
Dear useRs, I have this funny thing going on with me since morning. I am 32 bit window 7 system with 4 GB RAM(2.95 usable). I tried to run a code on it but when I tried to convert dataframe to matrix by using the following code mat-matrix(as.numeric(unlist(SFI)),nrow=nrow(SFI)) *where SFI is my

Re: [R] R memory issues

2014-11-11 Thread Uwe Ligges
On 11.11.2014 20:32, eliza botto wrote: Dear useRs, I have this funny thing going on with me since morning. I am 32 bit window 7 system with 4 GB RAM(2.95 usable). I tried to run a code on it but when I tried to convert dataframe to matrix by using the following code

Re: [R] R memory issues

2014-11-11 Thread Ista Zahn
The short answer is get a bigger computer or find a way to do the computation using less memory. Best, Ists On Nov 11, 2014 2:34 PM, eliza botto eliza_bo...@hotmail.com wrote: Dear useRs, I have this funny thing going on with me since morning. I am 32 bit window 7 system with 4 GB RAM(2.95

Re: [R] R Memory Issues

2012-05-22 Thread Emiliano Zapata
As a continuation to my original question, here is the massage that I get: Error in glm.fit(x = structure(c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, : cannot allocate memory block of size 2.1 Gb The model glm.fit is a logistic type (in the family of GLM) model. Maybe this is not enough

Re: [R] R Memory Issues

2012-05-22 Thread Paul Johnson
Dear Emiliano: When they say to read the posting guide, mostly they mean read the posting guide. But I'll tell you the short version. 1. Include a full runable R program that causes the trouble you are concerned about. Include the data or a link to the data, usually the smallest possible

[R] R Memory Issues

2012-05-20 Thread Emiliano Zapata
-- Forwarded message -- From: Emiliano Zapata ezapata...@gmail.com Date: Sun, May 20, 2012 at 12:09 PM Subject: To: R-help@r-project.org Hi, I have a 64 bits machine (Windows) with a total of 192GB of physical memory (RAM), and total of 8 CPU. I wanted to ask how can I make R

Re: [R] R Memory Issues

2012-05-20 Thread Wincent
Try memory.limit(92000) sent from my HTC On May 21, 2012 1:27 AM, Emiliano Zapata ezapata...@gmail.com wrote: -- Forwarded message -- From: Emiliano Zapata ezapata...@gmail.com Date: Sun, May 20, 2012 at 12:09 PM Subject: To: R-help@r-project.org Hi, I have a 64 bits

Re: [R] R Memory Issues

2012-05-20 Thread jim holtman
At the point in time that you get the error message, how big are the objects that you have in memory? What does 'memory.size()' show as being used? What does 'memory.limit()' show? Have you tried using 'gc()' periodically to do some garbage collection? It might be that you memory is

Re: [R] R Memory Issues

2012-05-20 Thread Jeff Newmiller
http://cran.r-project.org/bin/windows/base/rw-FAQ.html#There-seems-to-be-a-limit-on-the-memory-it-uses_0021 Have you read the documentation? --- Jeff NewmillerThe . . Go Live...

Re: [R] R Memory Issues

2012-05-20 Thread Patrick Burns
You are on a 64-bit machine, but are you using 64-bit R? Are you using memory intensive constructs like those discussed in Circle 2 of 'The R Inferno'? http://www.burns-stat.com/pages/Tutor/R_inferno.pdf Pat On 20/05/2012 17:09, Emiliano Zapata wrote: -- Forwarded message --

Re: [R] R Memory Issues

2012-05-20 Thread Prof Brian Ripley
On 20/05/2012 18:42, jim holtman wrote: At the point in time that you get the error message, how big are the objects that you have in memory? What does 'memory.size()' show as being used? What does 'memory.limit()' show? Have you tried using 'gc()' periodically to do some garbage collection?

Re: [R] R Memory Issues

2012-05-20 Thread Emiliano Zapata
Already then, thank you everyone. This information was extremly useful, and I'll do a better job on the web next time. On Sun, May 20, 2012 at 2:10 PM, Prof Brian Ripley rip...@stats.ox.ac.ukwrote: On 20/05/2012 18:42, jim holtman wrote: At the point in time that you get the error message,