{% if labels|length > 1 %} {% with menuId='dropdownMenuLabel', menuText='Response', values=labels, menuDivVisible='explain-all' %} {% include "dropdown.html" %} {% endwith %} {% else %} {% endif %}

Global feature importance plot

{% for label in labels %}
{{ label['feature_importance_plot'] }}
{% endfor %}

Features contribution plots

{% for label in labels %}
{% with menuId='dropdownMenu2', menuText='Feature', values=label['features'], menuDivVisible='explain-contrib-'~label['index'] %} {% include "dropdown.html" %} {% endwith %} {% for col in label['features'] %}

{{ col['name'] }} - {{ col['type'] }}

{% if col['name'] != col['description'] %}
{{ col['description'] }}
{% else %} {% endif %} {{ col['plot'] }}
{% endfor %}
{% endfor %}

Features Top Interaction plots

{% for label in labels %}
{% with menuId='dropdownMenu3', menuText='Interactions', values=label['features_interaction'], menuDivVisible='explain-contrib-interaction-'~label['index'] %} {% include "dropdown.html" %} {% endwith %} {% for col in label['features_interaction'] %}

{{ col['name'] }} - {{ col['type'] }}

{% if col['name'] != col['description'] %}
{{ col['description'] }}
{% else %} {% endif %} {{ col['plot'] }}
{% endfor %}
{% endfor %}