Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1002 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 1002 Bytes

Beauty-product-trends


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