What is the most straight forward way of showing the percentages each bin take up on a histogram, instead of showing the counts on the Y axis?
(Series.value_counts( normalize=True)*100).plot(kind=‘bar’)
What is the most straight forward way of showing the percentages each bin take up on a histogram, instead of showing the counts on the Y axis?
(Series.value_counts( normalize=True)*100).plot(kind=‘bar’)