Analysis Overview
{% for col in profile.column_profiles %}
{% if col.type == 'Numerical' %}
{% elif col.type == 'Categorical' %}
{% endfor %}
{% if profile.missing_values_html %}
{{ col.name }}
{{ col.type }}- Mean {{ col.stats.mean | round(2) }}
- Median {{ col.stats.median | round(2) }}
- Std Dev {{ col.stats.std | round(2) }}
- Min {{ col.stats.min | round(2) }}
- Max {{ col.stats.max | round(2) }}
- Unique Values {{ col.stats.unique_values }}
- Most Frequent {{ col.stats.top_value }}
Missing Values
{{ profile.missing_values_html | safe }}
Univariate Analysis
{% for plot in univariate_plots %}
{% endfor %}
{{ plot.replace('_', ' ').replace('.png', '') | title }}
Bivariate Analysis
{% for plot in bivariate_plots %}
{% set caption = plot.replace('_', ' ').replace('.png', '') | title %}
{% endfor %}
{{ caption }}
Multivariate Analysis
{% for plot in multivariate_plots %}
{% set caption = plot.replace('_', ' ').replace('.png', '') | title %}
{% endfor %}
{{ caption }}