[R] Memory increase in R

2007-04-18 Thread Hong Su An
Dear All: Pleas help me to increase the memory in R. I am trying to make euclidean distance matrix. The number of low in data is 500,000. Therefore, the dimension of euclidean distance matrix is 500,000*500,000. When I run the data in R. R could not make distance matrix because of memory

Re: [R] Memory increase in R

2007-04-18 Thread jim holtman
You would need 2TB (2,000,000,000,000) to store a single copy of your data. You probably need to rescale your problem. Even if you had the memory, the computation would take a very long time. On 4/18/07, Hong Su An [EMAIL PROTECTED] wrote: Dear All: Pleas help me to increase the memory in R