Hi,
I'm trying to use the dev version of data.table in order to leverage the new fcase function. I downloaded the windows binary file here on this page. I can confirm that I've restarted the computer and am doing this on a brand new R session.
Here is the log of my session:
R version 3.5.3 (2019-03-11) -- "Great Truth"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
Microsoft R Open 3.5.3
The enhanced R distribution from Microsoft
Microsoft packages Copyright (C) 2019 Microsoft Corporation
Using the Intel MKL for parallel mathematical computing (using 4 cores).
Default CRAN mirror snapshot taken on 2019-04-15.
See: https://mran.microsoft.com/.
> remove.packages('data.table')
Removing package from ‘C:/Program_Files/Microsoft/R Open/R-3.5.3/library’
(as ‘lib’ is unspecified)
> install.packages("~/Downloads/data.table_1.12.9.zip", repos = NULL, type = "win.binary")
package ‘data.table’ successfully unpacked and MD5 sums checked
> library(data.table)
Error: package or namespace load failed for ‘data.table’:
object 'as.xts' not found whilst loading namespace 'data.table'
In addition: Warning message:
package ‘data.table’ was built under R version 4.0.0
> library(xts)
Loading required package: zoo
Attaching package: ‘zoo’
The following objects are masked from ‘package:base’:
as.Date, as.Date.numeric
> library(data.table)
Error: package or namespace load failed for ‘data.table’ in rbind(info, getNamespaceInfo(env, "S3methods")):
number of columns of matrices must match (see arg 2)
In addition: Warning message:
package ‘data.table’ was built under R version 4.0.0
> sessionInfo()
R version 3.5.3 (2019-03-11)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 17763)
Matrix products: default
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] xts_0.12-0 zoo_1.8-7 RevoUtils_11.0.3 RevoUtilsMath_11.0.0
loaded via a namespace (and not attached):
[1] compiler_3.5.3 tools_3.5.3 grid_3.5.3 lattice_0.20-38
Hi,
I'm trying to use the dev version of
data.tablein order to leverage the newfcasefunction. I downloaded the windows binary file here on this page. I can confirm that I've restarted the computer and am doing this on a brand new R session.Here is the log of my session: