Re: [R] Rprof causing R to crash

2013-02-05 Thread c97sr
My previous experience is that Rprof is stable with processes with much larger memory footprints. Hence why I think the for loop error might be related to the problems I'm having. Is there an alternative to Rprof? This is fairly crucial for me right now. Will try to get setup on cheers S

Re: [R] Rprof causing R to crash

2013-02-04 Thread c97sr
Am also having trouble with Rprof. I am using on R 2.15.2 on the Mac (Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)). The example above without profiling takes around a minute to run: > z = 1 > for (i in 1:1e8) z = z+1/i > z [1] 19.9979 With profiling: > Rprof() > z = 1 > for (i in 1: