我无法在我的pd饼图中添加标签

时间:2018-06-18 05:45:05

标签: python

df = pd.DataFrame({'Test_Pos':[65.44, 23.22, 11.34], 'Test_Neg':[22.55, 65.13, 12.32]}, index=['Positive','Negative','Others'] )
df.plot(kind='pie', subplots=True, figsize=(16, 8))

我无法标记图表。我想把百分比放在图表上。我如何使用熊猫这样做?

1 个答案:

答案 0 :(得分:0)

使用autopct参数。

<强>代码:

df = pd.DataFrame({'Test_Pos': [65.44, 23.22, 11.34], 'Test_Neg': [22.55, 65.13, 12.32]},
                  index=['Positive', 'Negative', 'Others'])
df.plot(kind='pie', subplots=True, figsize=(16, 8), autopct='%.2f', labels=df.index, fontsize=10)

enter image description here