Skip to content

Instantly share code, notes, and snippets.

@2pacors
2pacors / interactive_sales_dashboard.py
Created September 26, 2025 10:50
Python project: Interactive Sales Data Dashboard
# Interactive Sales Data Dashboard
# Author: [Your Name]
# Description: A simple dashboard to analyze and visualize sales data using Python.
import pandas as pd
import matplotlib.pyplot as plt
# Step 1: Load the data
data = pd.read_csv("sales_data.csv")
print("First 5 rows of the dataset:")