It seems that there is an odd issue when trying to table or convert long POSIXct variables. It is relatively easy to get around this, but it is still annoying. Has anyone else experienced this? An easy example is the following
z <- 1472562988
tst <- as.POSIXct(z+(1:150000), origin = "1960-01-01")
tst2 <- z+1:150000
segFault <- table(tst)
segFault2 <- as.character(tst)
segFault3 <- as.factor(tst)
noSegFault <- table(tst2)
The reason I ask, is that if I import data from a sql table and want to use by() with a date index, I cannot do it without first converting my date column to a character format in SQL. Here is the output of sessionInfo():
R version 2.12.0 (2010-10-15) Platform: sparc-sun-solaris2.10 (32-bit)
locale: [1] C
attached base packages:
[1] grid stats graphics grDevices utils datasets methods
[8] base
other attached packages:
[1] timeDate_2120.90 ggplot2_0.8.8 proto_0.3-8 reshape_0.8.3
[5] plyr_1.2.1