Am trying to export a table into a csv file using data.table::fwrite()
However I get the following issue when am using the command
library(data.table)
fwrite(DT, "location")
Error: could not find function "fwrite"
I had installed data.table like this
install.packages("data.table")
Am I missing something here?