{% 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'] }} {% with menuId='dropdownMenu2', menuText='Feature', values=label['features'], menuDivVisible='explain-contrib-'~label['index'] %} {% include "dropdown.html" %} {% endwith %}
{% endfor %}

Features contribution plots

{% for label in labels %}
{% for col in label['features'] %}

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

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