powered by
This function provides descriptive statistic for exploratory data analysis.
describe(dt)
A data frame.
library(data.table) data("germancredit") dat = rbind( setDT(germancredit), data.table(creditability=sample(c("good","bad"),100,replace=TRUE)), fill=TRUE) eda = describe(dat) eda
Run the code above in your browser using DataLab