An open API service indexing awesome lists of open source software.

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

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()

```