{% include 'scripts.html' %} {% include 'styles.html' %}
Stats and Insights
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 %}
{% for page, content in context.overview_insights.items() %}
Dataset Insights
{% for entry in content %} {% for ins_type, insight in entry.items() %}
{{ insight.split(' ')[0] }}
{{ insight.replace(insight.split(' ')[0], '') }}
{{ ins_type }}
{% endfor %} {% endfor %}
{% endfor %}
{% for _ in context.overview_insights %} {% if loop.length > 1 %}
{{ loop.index }}
{% endif %} {% endfor %}
{% for fig in context.components[1] %}
{{ context.meta[loop.index0] }}
{% if context.column_insights[context.meta[loop.index0]] %}
Column Insights
{% for insight in context.column_insights[context.meta[loop.index0]] %}
{{ insight.split(' ')[0] }}
{{ insight.replace(insight.split(' ')[0], '') }}
{% endfor %}
{% endif %}
{{ fig }}
{% endfor %}