Re: [R] Memory leak in R v1.6.0?

2002-12-18 Thread Peter Dalgaard BSA
Roger Peng <[EMAIL PROTECTED]> writes: > There was a memory leak discovered in R 1.6.0 but it's difficult to tell > if this is in fact causing your problem. At any rate, you should upgrade > to version 1.6.1 (the latest release). Yep. In fact it is highly likely that this is the cause. That prob

Re: [R] Memory leak in R v1.6.0?

2002-12-18 Thread Roger Peng
There was a memory leak discovered in R 1.6.0 but it's difficult to tell if this is in fact causing your problem. At any rate, you should upgrade to version 1.6.1 (the latest release). -roger ___ UCLA Department of Statistics [EMAIL PROTECTED] http://www.stat.ucla.edu/

Re: [R] Memory leak in R v1.6.0?

2002-12-18 Thread Jeff Gentry
> When I look at the task manager, I see that the > memory used by R keep going up and reach more than 1G > byte after 700 iteration or so. I have try including > gc after every loop. No help at all. I'll appreciate > any suggestion. Have you tried R1.6.1? I believe it fixes this problem. -J

[R] Memory leak in R v1.6.0?

2002-12-18 Thread apollo wong
I have a function that needs to be repeated many times with for loop. I have take measure to rm all the big arrays that was used in the function. The only array that cannot be rm was the return arrays. The loop needed to be repeat for over 2000 times and I am using v1.6.0 in Windows 2000 When I lo