Analysis of the Relationship of Variables to a Target Variable
{% if toc_entries %}
📋 Table of Contents ({{ toc_entries|length }} variables)
#
Variable
Explained Variance
{% for entry in toc_entries %}
{{ loop.index }}
{{ entry.name }}
{{ "{:.2f}%".format(entry.explained_var * 100) }}
{% endfor %}
{% endif %} {% if skipped_variables %}
⚠ {{ skipped_variables|length }} variable{{ 's' if skipped_variables|length > 1 else '' }} skipped
Variable
Reason
{% for var in skipped_variables %}
{{ var.name }}
{{ var.reason }}
{% endfor %}
{% endif %}
TARGET: {{ result_dict.target }}
{{ result_dict.target_histogram | safe }}
{{ result_dict.target_table | safe }}