{% if sections.box_plot is defined %}

📦 Box Plot Analysis

The box plot table presents the summary statistics (min, Q1, median, Q3, max, outliers) for each variable. This helps visualize the distribution and identify potential outliers.

{% set box_data = sections.box_plot.data.original %} {% set scaler_data = sections.box_plot.data.scaler_data %} {% set dist_images = {} %} {% if sections.dist_numeric.chart and sections.dist_numeric.chart.images %} {% set dist_images = sections.dist_numeric.chart.images %} {% endif %} {% if box_data|length > 0 %}
{% for item in box_data %} {% set item_scaler = scaler_data[loop.index0] %} {% endfor %}
Column Min Q1 Median Q3 Max Outlier Count Outliers Box Plot Distribution Chart
{{ item.column }} {{ "%.0f"|format(item.min) if item.min is number else item.min }} {{ "%.0f"|format(item.Q1) if item.Q1 is number else item.Q1 }} {{ "%.0f"|format(item.median) if item.median is number else item.median }} {{ "%.0f"|format(item.Q3) if item.Q3 is number else item.Q3 }} {{ "%.0f"|format(item.max) if item.max is number else item.max }} {{ item.outliers_count }} {% if item.outliers is defined and item.outliers|length > 0 %} {{ item.outliers|join(', ') }} {% else %} - {% endif %} {% if item_scaler is defined %} {% with item_scaler=item_scaler %} {% include "sections/charts/box_plot.html" %} {% endwith %} {% else %} - {% endif %} {% if dist_images[item.column] is defined %} Distribution chart for {{ item.column }} {% else %} - {% endif %}
{% else %}

No box plot data available.

{% endif %} {% if sections.box_plot.chart and sections.box_plot.chart.images %}
{% endif %}
{% endif %}