I am new to R and have to install a data.table
into my workfile.
Right now, I have implemented:
install.packages("data.table")
require(data.table)
However, when I run this part (Ctrl + Enter) I get the following error in the console-window:
Loading required package: data.table
Warning message:
In
library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE,
: there is no package calleddata.table
Is this truly an error or can I work on it further without problems? Thank you in advance!!
This solved the issue for me:
install.packages("data.table", dependencies=TRUE)
If install.packages("data.table")
does not work, try installing the binary:
install.packages("data.table", type = "binary")
as explained here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With