Pranav0111 commited on
Commit
f54a237
·
verified ·
1 Parent(s): 6a37941

Delete utils.py

Browse files
Files changed (1) hide show
  1. utils.py +0 -15
utils.py DELETED
@@ -1,15 +0,0 @@
1
- import pandas as pd
2
- import numpy as np
3
- from datetime import datetime, timedelta
4
-
5
-
6
- def generate_sample_data():
7
- """Generate sample data for dashboard visualization"""
8
- dates = pd.date_range(start='2024-01-01', end='2024-01-31', freq='D')
9
- return pd.DataFrame({
10
- 'Date': dates,
11
- 'Revenue': np.random.normal(1000, 100, len(dates)),
12
- 'Users': np.random.randint(100, 200, len(dates)),
13
- 'Engagement': np.random.uniform(0.5, 0.9, len(dates)),
14
- 'Category': np.random.choice(['A', 'B', 'C'], len(dates))
15
- })