{% 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 %}