📊 KS Statistic Distribution Analysis

The Kolmogorov-Smirnov (KS) statistic measures the maximum difference between the predicted and actual cumulative distributions. Lower values indicate better distribution matching between predictions and actual outcomes.

KS Statistic Distribution by Model Type

KS Statistic vs Model Accuracy

{% if chart_data_json and chart_data.ks_statistic_data.has_data %}

Summary Statistics

{% for model_data in chart_data.ks_statistic_data.box_data %}

{{ model_data.name }}

Mean KS: {{ "%.4f" | format(model_data.mean) }}
Min/Max: {{ "%.4f" | format(model_data.min) }} / {{ "%.4f" | format(model_data.max) }}
Models: {{ model_data.count }}
{% endfor %}
{% else %}

No KS statistic data available for the models in this experiment.

{% endif %}