我想修复从我的plot.bar()中得到的str数字而不改变figsize。这个有可能 ?
我的代码:
ax = dados["NU_IDADE"].value_counts().sort_index().plot.bar(figsize=(25, 10))
for p in ax.patches:
percent_label_text = (p.get_height() / len(dados)) * 100
ax.annotate(f'{str(round(percent_label_text, 2 if percent_label_text >= 0.01 else 3))}%', (p.get_x(), p.get_height()), rotation='vertical', xytext=(2, 5), textcoords="offset points")
我的情节吧:
慕的地10843
相关分类