{{ labels.title }}
{{ labels.subtitle }}
{% if no_missing %}
✅ {{ labels.no_missing }}
{% else %}
{{ labels.section_overview }}
| {{ labels.col_column }} |
{{ labels.col_missing }} |
{{ labels.col_pct }} |
{{ labels.col_pct_bar }} |
{{ labels.col_dtype }} |
{{ labels.col_severity }} |
{% for row in overview_rows %}
| {{ row.column }} |
{{ row.missing }} |
{{ "%.1f" | format(row.pct) }}% |
|
{{ row.dtype }} |
{{ row.severity_label }} |
{% endfor %}
{{ labels.section_summary }}
| {{ labels.stat_key }} | {{ labels.stat_value }} |
| {{ labels.stat_total_cells }} | {{ summary.total_cells }} |
| {{ labels.stat_missing_cells }} | {{ summary.missing_cells }} |
| {{ labels.stat_pct_missing }} | {{ "%.2f" | format(summary.pct_missing) }}% |
| {{ labels.stat_cols_any }} | {{ summary.cols_any_missing }} |
| {{ labels.stat_rows_any }} | {{ summary.rows_any_missing }} |
| {{ labels.stat_complete_rows }} | {{ summary.complete_rows }} |
{% if cases_rows %}
{{ labels.section_cases }}
| {{ labels.col_row_index }} |
{{ labels.col_missing }} |
{{ labels.col_pct }} |
{% for row in cases_rows %}
| {{ row.index }} |
{{ row.missing }} |
{{ "%.1f" | format(row.pct) }}% |
{% endfor %}
{% endif %}
{% if mcar_result and mcar_info %}
{{ labels.section_mcar }}
{{ labels.stat_chi_square }}
{{ "%.4f" | format(mcar_result.chi_square) }}
{{ labels.stat_df }}
{{ mcar_result.df }}
{{ labels.stat_p_value }}
{{ "%.4f" | format(mcar_result.p_value) }}
{{ labels.stat_patterns }}
{{ mcar_result.missing_patterns }}
{{ mcar_info.mechanism }}
{{ mcar_info.mechanism_detail }}
{{ labels.section_recommendation }}
{{ labels.recommendation_icon }} {{ mcar_info.recommendation }}
{{ mcar_info.recommendation_detail }}
{% endif %}
{{ labels.section_plots }}
{% if matrix_plot %}
{{ labels.plot_matrix }}
{% endif %}
{% if bar_plot %}
{{ labels.plot_bar }}
{% endif %}
{% if heatmap_plot %}
{{ labels.plot_heatmap }}
{% endif %}
{% if vismiss_plot %}
{{ labels.plot_vismiss }}
{% endif %}
{% if upset_plot %}
{{ labels.plot_upset }}
{% endif %}
{% endif %}