| name | autoviz-1-sample-large-datasets |
| description | Sub-skill of autoviz: 1. Sample Large Datasets (+3). |
| version | 1.0.0 |
| category | data-analysis |
| type | reference |
| scripts_exempt | true |
1. Sample Large Datasets (+3)
1. Sample Large Datasets
AV.AutoViz(
filename="",
dfte=large_df,
max_rows_analyzed=50000,
verbose=1
)
2. Specify Target Variable When Available
AV.AutoViz(
filename="",
dfte=df,
depVar="target_column",
verbose=1
)
3. Choose Appropriate Chart Format
chart_format="png"
chart_format="html"
chart_format="server"
chart_format="svg"
4. Organize Output
import os
output_dir = f"eda_{datetime.now().strftime('%Y%m%d_%H%M%S')}"
os.makedirs(output_dir, exist_ok=True)
AV.AutoViz(
filename="",
dfte=df,
save_plot_dir=output_dir,
chart_format="png"
)