https://github.com/arif-miad/beauty-product-trends
https://github.com/arif-miad/beauty-product-trends
data-science matplotlib pan seaborn-python
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arif-miad/beauty-product-trends
- Owner: Arif-miad
- License: mit
- Created: 2024-09-09T20:45:55.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T21:11:05.000Z (8 months ago)
- Last Synced: 2025-01-14T11:25:50.102Z (4 months ago)
- Topics: data-science, matplotlib, pan, seaborn-python
- Language: Jupyter Notebook
- Homepage:
- Size: 3.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Beauty-product-trends
![]()
```Python
plt.figure(figsize=(12, 6))
sns.countplot(x='Brand', data=df, palette='Set2') # Updated with 'Brand' column
plt.title('Distribution of Product Brands')
plt.xlabel('Brand')
plt.ylabel('Count')
plt.xticks(rotation=45) # Rotate x-axis labels for better visibility
plt.grid(True)
plt.show()```