Я хотел бы показать значение для каждого столбца в моей гистограмме. Какой самый простой способ сделать это, пожалуйста?
fig, ax1 = plt.subplots(1, 1, figsize= (10, 5))
skin_df['cell_type'].value_counts().plot(kind='bar', ax=ax1)
plt.title('Malignant skin cancer by cell type')
plt.xlabel('Cell type')
plt.ylabel('No of cells');
txt="Figure 1. Malignant skin cancer by cell type"
plt.figtext(0.5,-0.40, txt, wrap=True, horizontalalignment='center', fontsize=14)
Спасибо