{% include 'jquery.html' %}
{% include 'pagination.html' %}
{% include 'grid_scripts.html' %}
{% include 'grid_styles.html' %}
{% if context.tabledata or context.overview_insights or context.comparison_stats %}
{% if context.comparison_stats %}
Difference Overview
|
{% for df_label in context.df_labels %}
{{ df_label }} |
{% endfor %}
{% for th, td in context.comparison_stats[0].items() %}
{{ th }} |
{% for df_stat in td %}
{{ df_stat }} |
{% endfor %}
{% endfor %}
Variable Types |
{% for vb_types in context.comparison_stats[1] %}
{% for tp, num in vb_types.items() %}
{% endfor %}
|
{% endfor %}
{% endif %}
{% if context.tabledata %}
Dataset Statistics
{% for th, td in context.tabledata[0].items() %}
{{ th }} |
{{ td }} |
{% endfor %}
Variable Types |
{% for tp, num in context.tabledata[1].items() %}
- {{ tp }}: {{ num }}
{% endfor %}
|
{% endif %}
{% if context.overview_insights %}
{% for page, content in context.overview_insights.items() %}
Dataset Insights
{% for entry in content %}
{% for ins_type, insight in entry.items() %}
{{ insight|escape|replace('/*start*/', '')|replace('/*end*/', '') }}
|
{{ ins_type }} |
{% endfor %}
{% endfor %}
{% endfor %}
{% for _ in context.overview_insights %}
{% if loop.length > 1 %}
- {{ loop.index }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if context.legend_labels %}
{% for legend in context.legend_labels %}
{% if loop.index0 == context.baseline %}
{{ legend.label }}
{% else %}
{{ legend.label }}
{% endif %}
{% endfor %}
{% endif %}
{% for fig in context.components[1] %}
{% if context.meta %}
{% endif %}
{{ fig }}
{% endfor %}