This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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:") |