| Distinct Values |
{{ profile.distinct }} ({{ profile.distinct_pct }}%) |
| Missing Values |
{{ profile.missing }} ({{ profile.missing_pct }}%) |
| Memory Usage |
{{ profile.memory_kb }} KiB |
{% if profile.type == 'Numeric' %}
| Mean |
{{ profile.mean }} |
| Range |
{{ profile.min }} — {{ profile.max }} |
{% endif %}
{% if profile.dist_plot %}
{% endif %}
{% if profile.type == 'Categorical' and profile.top_values %}
Value Distribution
| Value |
Count |
Percentage |
{% for val in profile.top_values[:5] %}
| {{ val.value }} |
{{ val.count }} |
{{ val.pct }}% |
{% endfor %}
{% endif %}