Re: [R] "too large for hashing"

2012-04-05 Thread Adam D. I. Kramer
Thanks for your response, Duncan. x$eventtype is a "character" vector (because the same hashing error occurred when I tried to read.table() in the first place specifying colClasses = c(..., "factor", ...). x really is that long: dim(x) [1] 1093574297 12 ...the x$eventtype field has t

Re: [R] "too large for hashing"

2012-04-05 Thread Duncan Murdoch
On 05/04/2012 2:03 PM, Adam D. I. Kramer wrote: Hello, I'm doing some analysis on a rather large data set. In this case, some simple commands are failing. For example, this one: > x$eventtype<- factor(x$eventtype) Error in unique.default(x) : length 1093574297 is too large for hashing

[R] "too large for hashing"

2012-04-05 Thread Adam D. I. Kramer
Hello, I'm doing some analysis on a rather large data set. In this case, some simple commands are failing. For example, this one: x$eventtype <- factor(x$eventtype) Error in unique.default(x) : length 1093574297 is too large for hashing ...I think this is a bug, because "hashing" shou