{% extends "base.html" %} {% block title %}XAURA - Profile: {{ filename }}{% endblock %} {% block nav_profile %}active{% endblock %} {% block content %}

Dataset Profile

{{ filename }}

{{ "{:,}".format(n_rows) }}
Rows
{{ n_cols }}
Columns
{{ task_type or "unknown" }}
Task Type
{% if has_missing %}
{{ missing_pct }}%
{% else %}
None
{% endif %}
Missing Values

Feature Types

{% for feat_type, count in feature_types.items() %}
{{ feat_type }} {{ count }}
{% endfor %}

Target Column

Column: {{ target_column or "None" }}
Task: {{ task_type or "unknown" }}
Imbalanced: {{ "Yes" if is_imbalanced else "No" }}

Column Details

|
{% for col in columns %} {% endfor %}
Column Type Missing Unique
{{ col.name }} {{ col.dtype }} {% if col.missing_count > 0 %} {{ col.missing_pct }}% ({{ col.missing_count }}) {% else %} 0% {% endif %} {{ col.unique }}
{% if warnings %}

Warnings

{% endif %}

Run a Model

Dataset hash: {{ dataset_hash }}...

{% endblock %}