Re: [R] write.csv size limit in R 2.11.0 -- crashes

2010-04-27 Thread N Klepeis
The latest patched build 51822 fixed the write.csv problem: http://cran.r-project.org/bin/windows/base/rpatched.html On 4/26/2010 2:10 PM, Duncan Murdoch wrote: On 26/04/2010 4:25 PM, N Klepeis wrote: Hi, I just installed R 2.11.0 Win32 and tried to use write.csv (or write.table) to write

[R] write.csv size limit in R 2.11.0 -- crashes

2010-04-26 Thread N Klepeis
Hi, I just installed R 2.11.0 Win32 and tried to use write.csv (or write.table) to write a 121000x26 data frame. This crashes R. The dataframe was written OK in R 2.10.1. I tried up to 108000 rows and the file was written OK. But then going to 109000 causes the crash. Anyone else see

[R] question on 'within' and 'parse' commands

2010-01-07 Thread N Klepeis
Hi, Why can't I pass an expression to `within' by way of textual input to the 'parse' function? e.g., x - data.frame(a=1:5,b=LETTERS[1:5]) x a b 1 1 A 2 2 B 3 3 C 4 4 D 5 5 E within(x, parse(text=a-a*10; b-2:6)) a b 1 1 A 2 2 B 3 3 C 4 4 D 5 5 E within(x, parse(text=a-a*10;