generate_report
Generate a complete exploratory data analysis report for your dataset, including overview, data quality flags, and per-column summaries with interpretations.
Instructions
Generate a complete EDA markdown report for the entire dataset. This is the main tool to call for a thorough, end-to-end analysis. The report includes:
Dataset overview: row count, column count, memory usage, total missing values
Data quality flags: columns with >20% missing values, imbalanced binary columns, high cardinality columns, columns with infinite values, columns with >10% outliers by IQR method
Per-column variable summaries: statistics table, diagnostic plot image, and a 2-3 sentence plain english interpretation of the distribution shape, outliers, and data quality for each column
Saves the report as {filename}_eda_report.md in output_dir alongside the diagnostic plot PNGs. Returns the path to the saved report file.
For quick inspection of a single column use get_column_summary or get_diagnostic_plot instead of running the full report.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| output_dir | No | ||
| table | No |