-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
Hello,
Any ideas? Whether I use save()/load() or saveRDS()/readRDS() the same error occurs. Thanks in advance!
> library(data.table)
data.table 1.10.5 IN DEVELOPMENT built 2017-11-13 22:20:11 UTC; travis
The fastest way to learn (by data.table authors): https://www.datacamp.com/courses/data-analysis-the-data-table-way
Documentation: ?data.table, example(data.table) and browseVignettes("data.table")
Release notes, videos and slides: http://r-datatable.com
> DT <- as.data.table(iris)
> save(DT, file = "~/DT.RData")
> load("~/DT.RData")
> set(DT, j = "foo", value = rep(TRUE, nrow(DT)))
Error in set(DT, j = "foo", value = rep(TRUE, nrow(DT))) :
Internal error, please report (including result of sessionInfo()) to datatable-help: oldtncol (0) < oldncol (5) but tl of class is marked.
> sessionInfo()
R version 3.4.2 (2017-09-28)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 16.04.3 LTS
Matrix products: default
BLAS: /usr/lib/libblas/libblas.so.3.6.0
LAPACK: /usr/lib/lapack/liblapack.so.3.6.0
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] data.table_1.10.5
loaded via a namespace (and not attached):
[1] compiler_3.4.2 tools_3.4.2