{% for tab in value.tab_names %}
{% endfor %}
{% if value.col_type == "numerical" %}
Quantile Statistics
{% for h, d in value.tabledata["Quantile Statistics"].items() %}
{{ h }} |
{% for comps in context.components.dfs %}
{% if key in comps.variables %}
{% if h in comps.variables[key].tabledata["Quantile Statistics"] %}
{{ comps.variables[key].tabledata["Quantile Statistics"][h] }} |
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
Descriptive Statistics
{% for h, d in value.tabledata["Descriptive Statistics"].items() %}
{{ h }} |
{% for comps in context.components.dfs %}
{% if key in comps.variables %}
{% if h in comps.variables[key].tabledata["Descriptive Statistics"] %}
{{ comps.variables[key].tabledata["Descriptive Statistics"][h] }} |
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% if value.col_type == "categorical" %}
Length
{% for h, d in value.tabledata["Length"].items() %}
{{ h }} |
{% for comps in context.components.dfs %}
{% if key in comps.variables %}
{% if h in comps.variables[key].tabledata["Length"] %}
{{ comps.variables[key].tabledata["Length"][h] }} |
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
Sample
{% for h, d in value.tabledata["Sample"].items() %}
{{ h }} |
{% for comps in context.components.dfs %}
{% if key in comps.variables %}
{% if h in comps.variables[key].tabledata["Sample"] %}
{{ comps.variables[key].tabledata["Sample"][h] }} |
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
Letter
{% for h, d in value.tabledata["Letter"].items() %}
{{ h }} |
{% for comps in context.components.dfs %}
{% if key in comps.variables %}
{% if h in comps.variables[key].tabledata["Letter"] %}
{{ comps.variables[key].tabledata["Letter"][h] }} |
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% for div in value.plots[1] %}
{{ div }} |
{% if key in context.components.dfs[1].variables %}
{{ context.components.dfs[1].variables[key].plots[1][loop.index0] }} |
{% endif %}
{% endfor %}