{% if dataframe.page_layout == "widescreen" %}
{{ feature_dict.name }}
{% endif %} {% include 'include_missing.html' %}
{% for detail_graph in feature_dict.detail_graphs %} {% endfor %}
{% if numerical is not none %}
NUMERICAL ASSOCIATIONS
(PEARSON, -1 to 1)

{% for item in numerical %}
general.association_min_to_bold) or (item[1] < -general.association_min_to_bold) }}>
{{ item[0] }}
{{ item[1]|fmt_assoc }}
{% endfor %}
CATEGORICAL ASSOCIATIONS
(CORRELATION RATIO, 0 to 1)

{% for item in categorical %}
general.association_min_to_bold }}>
{{ item[0] }}
{{ item[1]|fmt_assoc }}
{% endfor %}
{% endif %}
MOST FREQUENT VALUES

{% for item in feature_dict.detail.frequent_values[:layout.num_detail_max_listed_values] %}
{{ item[0] }}
{{ item[1].number|fmt_int_limit }}
{{ item[1].perc|fmt_percent1d }}
{% if item[2] is not none %}
{{ item[2].number|fmt_int_limit }}
{{ item[2].perc|fmt_percent1d }}
{% endif %}
{% endfor %}
SMALLEST VALUES

{% for item in feature_dict.detail.min_values[:layout.num_detail_max_listed_values] %}
{{ item[0] }}
{{ item[1].number|fmt_int_limit }}
{{ item[1].perc|fmt_percent1d }}
{% if item[2] is not none %}
{{ item[2].number|fmt_int_limit }}
{{ item[2].perc|fmt_percent1d }}
{% endif %}
{% endfor %}
LARGEST VALUES

{% for item in feature_dict.detail.max_values[:layout.num_detail_max_listed_values] %}
{{ item[0] }}
{{ item[1].number|fmt_int_limit }}
{{ item[1].perc|fmt_percent1d }}
{% if item[2] is not none %}
{{ item[2].number|fmt_int_limit }}
{{ item[2].perc|fmt_percent1d }}
{% endif %}
{% endfor %}