Feature Ranking

Результаты ранжирования признаков

{% for method, ranking in feature_rankings.items() %} {% for value in ranking[:2] %} {% endfor %} {% endfor %}
Метод Признак 1 Признак 2
{{ method }} {% if value is iterable %} {% for item in value %} {{ item|round(2) }}{% if not loop.last %},{% endif %} {% endfor %} {% else %} {{ value|round(2) }} {% endif %}

Самые важные признаки

Значения X

{% for col_num in range(4) %} {% endfor %} {% for row in X_values %} {% for value in row %} {% endfor %} {% endfor %}
Признак {{ col_num + 1 }}
{% if value is iterable %} {% for item in value %} {{ item|round(2) }}{% if not loop.last %},{% endif %} {% endfor %} {% else %} {{ value|round(2) }} {% endif %}

Значения Y

{% for value in Y_values %} {% endfor %}
Y
{{ value|round(2) }}