在plot.bar Python图形中的每个条上显示百分比

时间:2018-11-23 19:00:54

标签: python pandas matplotlib

我有以下代码,我想在其上方显示与每个条形对应的百分比。

这是代码:

ratings_file = data.ratings_file

col_names = ['user_id', 'item_id', 'rating', 'timestamp']
raw_data = pd.read_table(ratings_file, names=col_names)

ratings = raw_data.rating

ratings.value_counts().sort_index().plot.bar()

这是我想要的百分比图:

Plot bar with percentages

0 个答案:

没有答案