Analysis Results for: {{ results.filename }}
← Upload Another File
Basic Information
- Filename: {{ results.filename }}
- Number of Rows: {{ results.num_rows }}
- Number of Columns: {{ results.num_cols }}
Column Names & Data Types:
{% for col, dtype in results.data_types.items() %}
- {{ col }}: {{ dtype }}
{% endfor %}
DataFrame Info Summary
{{ results.info_summary }}
Descriptive Statistics (Numeric Columns)
{# Use the |safe filter because we are rendering HTML generated by Pandas #}
{{ results.description_html | safe }}
First 5 Rows
{# Use the |safe filter because we are rendering HTML generated by Pandas #}
{{ results.head_html | safe }}
← Upload Another File