{% for tab in value.tab_name[1:] %}
{% endfor %}
{% if value.col_type == "numerical" %}
Quantile Statistics
{% for h, d in value.tabledata["Quantile Statistics"].items() %}
{{ h }} |
{{ d }} |
{% endfor %}
Descriptive Statistics
{% for h, d in value.tabledata["Descriptive Statistics"].items() %}
{{ h }} |
{{ d }} |
{% endfor %}
{% endif %}
{% if value.col_type == "categorical" %}
Length
{% for h, d in value.tabledata["Length"].items() %}
{{ h }} |
{{ d }} |
{% endfor %}
Sample
{% for h, d in value.tabledata["Sample"].items() %}
{{ h }} |
{{ d }} |
{% endfor %}
Letter
{% for h, d in value.tabledata["Letter"].items() %}
{{ h }} |
{{ d }} |
{% endfor %}
{% endif %}
{% for div,tab,insight_key in value.plots_tab %}
{% if value.insights_tab[insight_key] %}
{% endif %}
{{ div }}
{% endfor %}