{% extends "base.html" %} {% block title %}EDA Profile Report - Bank EDA Profiler{% endblock %} {% block content %}

Generic EDA Profile Report

Dataset overview and column profiling.

Dataset Overview
    {% for item in insights.generate_profile_insights(df) %}
  • {{ item | safe }}
  • {% endfor %}
{{ charts.kpi_card('Rows', df.shape[0] | string) | safe }}
{{ charts.kpi_card('Columns', df.shape[1] | string) | safe }}
{{ charts.kpi_card('Missing %', (df.isnull().mean().mean() * 100 | round(2)) ~ '%') | safe }}
{{ charts.missingness_chart(df, title='Missing Values by Column') | safe }}
{{ charts.correlation_heatmap(df, title='Correlation Heatmap') | safe }}
Raw Dataset Profile
{{ df.to_html(classes="table table-sm table-striped table-hover", index=False) | safe }}
{% endblock %}