Consider:
library(data.table)
storm <- fread("my.csv", header=TRUE, sep=',')
class(storm)
"data.table" "data.frame"
When the class
function is run on the dataset it returns two classes. Why it is doing that?
Consider:
library(data.table)
storm <- fread("my.csv", header=TRUE, sep=',')
class(storm)
"data.table" "data.frame"
When the class
function is run on the dataset it returns two classes. Why it is doing that?