AutoEDA

R 中有一些包可以帮助我们自动的进行探索性数据分析

1. dataMaid

library(dataMaid)
library(gapminder)
# Create report
makeDataReport(gapminder, output = "html", replace = TRUE)

2. DataExplorer

library(DataExplorer)
create_report(gapminder)
data()

3. SmartEDA

library(SmartEDA)
ExpReport(gapminder,op_file='smartEDA.html')