oretunde commited on
Commit
0456df3
·
verified ·
1 Parent(s): 1aafd59

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ def app():
35
  plots = [
36
  {"title": "Top Selling Pizzas (by Quantity)", "x": "pizza_name_id", "y": "quantity", "top": 5},
37
  {"title": "Quantity of Pizzas Sold by Category and Time of the Day","x": "pizza_category", "y": "quantity" , "hue": "time_of_day" , "estimator": "sum"},
38
- {"title": "Quantity of Pizzas Sold by Category and Time of the Day","x": "pizza_size", "y": "quantity" , "hue": "time_of_day" , "estimator": "sum"},
39
  {"title": "Monthly Revenue Trends by Pizza Category", "x": "order_month", "y": "total_price", "hue": "pizza_category", "estimator": "sum", "style": "pizza_category"},
40
  ]
41
 
 
35
  plots = [
36
  {"title": "Top Selling Pizzas (by Quantity)", "x": "pizza_name_id", "y": "quantity", "top": 5},
37
  {"title": "Quantity of Pizzas Sold by Category and Time of the Day","x": "pizza_category", "y": "quantity" , "hue": "time_of_day" , "estimator": "sum"},
38
+ {"title": "Quantity of Pizzas Sold by Size and Time of the Day","x": "pizza_size", "y": "quantity" , "hue": "time_of_day" , "estimator": "sum"},
39
  {"title": "Monthly Revenue Trends by Pizza Category", "x": "order_month", "y": "total_price", "hue": "pizza_category", "estimator": "sum", "style": "pizza_category"},
40
  ]
41