标签: 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))
我无法标记图表。我想把百分比放在图表上。我如何使用熊猫这样做?
答案 0 :(得分:0)
使用autopct参数。
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)