gpt4 book ai didi

python - Pandas 饼图绘制多个图形的实际值

转载 作者:行者123 更新时间:2023-12-04 01:38:48 28 4
gpt4 key购买 nike

我正在尝试以饼图而不是百分比打印实际值,对于一个维度系列,这有帮助:

Matplotlib pie-chart: How to replace auto-labelled relative values by absolute values

但是当我尝试创建多个馅饼时,它不起作用。

d = {'Yes':pd.Series([825, 56], index=["Total", "Last 2 Month"]), 'No':pd.Series([725, 73], index=["Total", "Last 2 Month"])}
df = pd.DataFrame(d)
df = df.T
def absolute_value(val):
a = np.round(val/100.*df.values, 0)
return a

df.plot.pie(subplots=True, figsize=(12, 6),autopct=absolute_value)
plt.show()

我怎样才能做到这一点?

谢谢。

最佳答案

一个hacky的解决方案是在absolute_value中索引数据帧函数,考虑到该函数被该数据帧中的每个值调用一次。

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd

d = {'Yes':pd.Series([825, 56], index=["Total", "Last 2 Month"]),
'No':pd.Series([725, 73], index=["Total", "Last 2 Month"])}
df = pd.DataFrame(d)
df = df.T

i = [0]
def absolute_value(val):
a = df.iloc[i[0]%len(df),i[0]//len(df)]
i[0] += 1
return a

df.plot.pie(subplots=True, figsize=(12, 6),autopct=absolute_value)
plt.show()

另一种选择是通过在列上循环来单独绘制饼图。
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd

d = {'Yes':pd.Series([825, 56], index=["Total", "Last 2 Month"]),
'No':pd.Series([725, 73], index=["Total", "Last 2 Month"])}
df = pd.DataFrame(d)
df = df.T
print df.iloc[:,0].sum()

def absolute_value(val, summ):
a = np.round(val/100.*summ,0)
return a

fig, axes = plt.subplots(ncols=len(df.columns))
for i,ax in enumerate(axes):
df.iloc[:,i].plot.pie(ax=ax,autopct=lambda x: absolute_value(x,df.iloc[:,i].sum()))
plt.show()

在这两种情况下,输出看起来都与此类似

enter image description here

关于python - Pandas 饼图绘制多个图形的实际值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48299254/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com