{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

📊 Dashboard

Your data science command center

{% if stats.has_data %}
{{ stats.dataset_name }} {{ stats.rows }} rows {{ stats.cols }} columns Change Dataset
{% endif %}
{% if not stats.has_data %}
📂
No Dataset Loaded

Upload a CSV dataset to start your automated data analysis journey. The AI will instantly profile, visualize, and analyze your data.

Upload Dataset
{% else %}
{{ stats.rows }}
Rows
{{ stats.cols }}
Columns
{{ stats.total_datasets }}
Total Datasets
{{ stats.total_reports }}
Reports Generated

Quick Actions

📋
Explore Data
View profiling, types, and statistics
📈
Visualize
Interactive charts and plots
🧠
AI Insights
Smart data-driven recommendations
🤖
AutoML
Train ML models automatically
⚙️
Operations
Transform and manipulate data
📑
Reports
Generate and export reports
📊

Dataset Summary

Loading dataset summary...

{% endif %}
{% endblock %}