Untitled
unknown
plain_text
a year ago
390 B
4
Indexable
import matplotlib.pyplot as plt import seaborn as sns # Создаем boxplot объемов (total_monthly_litres_dil) для каждого кластера (label) plt.figure(figsize=(10, 6)) sns.boxplot(x='label', y='total_monthly_litres_dil', data=df) plt.title('Boxplot of Volumes by Label') plt.xlabel('Label') plt.ylabel('Total Monthly Litres') plt.xticks(rotation=45) plt.show()
Editor is loading...
Leave a Comment