{% if report %}

{{ report.dataset_name }}

Profiled at {{ report.ran_at }}
Rows
{{ "{:,}".format(report.n_rows) }}
Numeric columns
{{ report.n_numeric_columns }}
Total columns
{{ report.columns | length }}
Column distribution profiles
{% if report.columns %} {% for col, info in report.columns.items() %} {% if info.get("error") %} {% else %} {% endif %} {% endfor %}
Column Distribution Skewness Exc. kurtosis Medcouple Normal? Multimodal? N (non-null)
{{ col }}{{ info.error }} (n={{ info.n }}){{ info.distribution_type }} {{ "%.4f"|format(info.skewness) }} {{ "%.4f"|format(info.excess_kurtosis) }} {{ "%.4f"|format(info.medcouple) }} {{ "yes" if info.is_normal else "no" }} {{ "yes" if info.is_multimodal else "no" }} {{ "{:,}".format(info.n) }}
{% else %}

No columns in this profile report.

{% endif %} {% else %}

No profile report found for dataset {{ dataset_name }}.

{% endif %}