{% include 'tab_scripts.html' %} {% include 'tab_styles.html' %}
{% for title in context.meta %} {% endfor %}
{% if context.legend_labels %}
{% for legend in context.legend_labels %}
{% if loop.index0 == context.baseline %}
{{ legend.label }}
{% else %}
{{ legend.label }}
{% endif %}
{% endfor %}
{% endif %}
{% if context.tabledata or context.comparison_stats%}
{% if context.tabledata%} {% for title, table in context.tabledata.items() %}

{{ title }}

{% for th, td in table.items() %} {% endfor %}
{{ th }}{{ td }}
{% endfor %} {% endif %} {% if context.comparison_stats %} {% for title, table in context.comparison_stats.items() %}

{{ title }}

{% for df_label in context.df_labels %} {% endfor %} {% for th, td in table.items() %} {% for df_stat in td %} {% endfor %} {% endfor %}
{{ df_label }}
{{ th }}{{ df_stat }}
{% endfor %} {% endif %}
{% endif %} {% for fig in context.components[1] %}
{% if context.how_to_guide[context.figs[loop.index - 1]] %}
{% for desc in context.how_to_guide[context.figs[loop.index - 1]] %}
{{ desc[0] }}
{{ desc[1] }}
{% endfor %}
{% endif %} {% if context.insights[context.figs[loop.index - 1]] %}
    {% for insight in context.insights[context.figs[loop.index - 1]] %}
  • {{ insight }}
  • {% endfor %}
{% endif %} {{ fig }}
{% endfor %} {% if context.value_table %}
{% for desc in context.how_to_guide["Value Table"] %}
{{ desc[0] }}
{{ desc[1] }}
{% endfor %}
{% for row in context.value_table %} {% endfor %}
Value Count Frequency (%)
{{ row['label'] }} {{ row['count'] }}
{% if row['width'] > 0.20 %} {{ row['percentage'] }} {% else %}   {% endif %}
{% if row['width'] <= 0.20 %} {{ row['percentage'] }} {% endif %}
{% endif %}