-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
14 lines (13 loc) · 1.34 KB
/
Copy pathdata.py
File metadata and controls
14 lines (13 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 10-day mini dataset for Bread
row1 = {"day": 1, "product": "Bread", "total_sold": 20, "weather": "Sunny", "day_type": "Weekday", "special_event": "None"}
row2 = {"day": 2, "product": "Bread", "total_sold": 22, "weather": "Hot", "day_type": "Weekday", "special_event": "None"}
row3 = {"day": 3, "product": "Bread", "total_sold": 18, "weather": "Cold", "day_type": "Weekday", "special_event": "None"}
row4 = {"day": 4, "product": "Bread", "total_sold": 25, "weather": "Sunny", "day_type": "Weekday", "special_event": "None"}
row5 = {"day": 5, "product": "Bread", "total_sold": 28, "weather": "Hot", "day_type": "Weekday", "special_event": "None"}
row6 = {"day": 6, "product": "Bread", "total_sold": 35, "weather": "Sunny", "day_type": "Weekend", "special_event": "None"}
row7 = {"day": 7, "product": "Bread", "total_sold": 33, "weather": "Hot", "day_type": "Weekend", "special_event": "None"}
row8 = {"day": 8, "product": "Bread", "total_sold": 20, "weather": "Cold", "day_type": "Weekday", "special_event": "None"}
row9 = {"day": 9, "product": "Bread", "total_sold": 27, "weather": "Sunny", "day_type": "Weekday", "special_event": "Promotion"}
row10 = {"day": 10, "product": "Bread", "total_sold": 40, "weather": "Hot", "day_type": "Weekend", "special_event": "Holiday"}
# Combine all rows into a list
data = [row1, row2, row3, row4, row5, row6, row7, row8, row9, row10]