{% if charts.feature_distribution_shift %}

Feature Distribution Shift

Shows the distribution shift of features between normal and stressed conditions, highlighting features with significant changes.

Feature distribution shift
{% endif %} {% if charts.critical_feature_distributions %}

Critical Feature Distributions

Compares the distributions of the most critical features between normal and stressed conditions.

Critical feature distributions
{% endif %} {% if charts.feature_importance_chart %}

Feature Importance for Resilience

Shows the most important features affecting model resilience. Features with higher importance have greater impact on model performance under stress.

Feature importance for resilience
{% endif %} {% if charts.feature_comparison_chart %}

Feature Importance: Model vs Resilience Analysis

Compares feature importance from the model's original training versus from resilience analysis, highlighting differences in what impacts general performance versus resilience.

Feature comparison
{% endif %} {% if feature_importance %}

Feature Importance

{% for feature, importance in feature_importance|dictsort(by='value', reverse=true) %} {% endfor %}
Feature Importance
{{ feature }} {{ "%.4f"|format(importance) }}
{% endif %}