https://github.com/iguptashubham/pizza-shop-eda
pizza-shop-EDA, pizza shop exploratory data analysis by python in jupyter notebook.
https://github.com/iguptashubham/pizza-shop-eda
Last synced: 3 months ago
JSON representation
pizza-shop-EDA, pizza shop exploratory data analysis by python in jupyter notebook.
- Host: GitHub
- URL: https://github.com/iguptashubham/pizza-shop-eda
- Owner: iguptashubham
- Created: 2024-03-15T19:03:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-15T19:21:47.000Z (about 1 year ago)
- Last Synced: 2025-01-14T04:13:58.300Z (4 months ago)
- Language: Jupyter Notebook
- Size: 3.87 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pizza-shop-EDA
**Pizza Shop** - satisfying late-night cravings and fueling game nights for over 20 years. Our reputation is built on fresh, local ingredients – you can practically taste the difference in every bite. We crank out classic New York-style pizzas with that perfect thin crust, but don't be afraid to get adventurous! Our menu has something for everyone, from veggie-lovers to meat-eaters, with some seriously unique combos you won't find anywhere else. Come hungry, leave happy – that's the Luigi's promise.

## Pizza Shop Peaks Hours
df['hour'].value_counts().sort_index(ascending = True).plot(kind = 'bar', figsize = (10,5), edgecolor='black', color = '#fc6358', width = 0.7)
.
plt.title('Pizza Shop Peak Hours')
plt.xlabel('Hour')
plt.xticks(rotation = 0)
plt.yticks([])
mean_value = df['hour'].value_counts().values.mean()
plt.axhline(y=mean_value, color='grey', linestyle='--', label='Mean')
plt.text(14,3500,'Average customers', color='black', ha='right', fontweight = 'book')
plt.show()
## Wordcloud
#### made by python library
### Pizza wordcloud

### Ingredients wordcloud





