| name | ydata-profiling-1-use-minimal-mode-for-large-datasets |
| description | Sub-skill of ydata-profiling: 1. Use Minimal Mode for Large Datasets (+3). |
| version | 1.0.0 |
| category | data-analysis |
| type | reference |
| scripts_exempt | true |
1. Use Minimal Mode for Large Datasets (+3)
1. Use Minimal Mode for Large Datasets
profile = ProfileReport(large_df, minimal=True)
2. Sample for Initial Exploration
sample = df.sample(n=10000, random_state=42)
profile = ProfileReport(sample, title="Sample Profile")
3. Customize for Your Needs
profile = ProfileReport(
df,
correlations={"pearson": {"calculate": True}},
missing_diagrams={"bar": True, "matrix": False, "heatmap": False}
)
4. Use Lazy Evaluation
profile = ProfileReport(df, lazy=True)
profile.to_file("report.html")