data.table
is a package that is used to work with tabular data in R Programming Language. It provides the efficient data.table
object which is a much improved and better performance version of the default data.frame
.
In order to use this, you have to install package in R by using install.packages("data.table")
and load it using library(data.table)