{% 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.replace('/*', '').replace('*/', '') }}
|
{{ ins_type }} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}