🤖 EDA automático (Pandas Profile y SweetViz)
- Ver variables de forma individual (histogramas, valores mas comunes, media, etc)
- Correlaciones
- Valores perdidos
 | Pandas profiling | |
---|---|---|
Import | from pandas_profiling import ProfileReport |
import sweetviz as sv |
Crear | report = ProfileReport(df) |
report = sv.analyze(df) |
Ver | report.to_notebook_iframe() |
report.show_html() |
Guardar | report.to_file("report.html") |
 |
 |
PandasGUI es otra opciĂłn.