gpt4 book ai didi

python - 在 Pandas 中使用特定的图形处理程序

转载 作者:行者123 更新时间:2023-12-01 05:15:13 31 4
gpt4 key购买 nike

假设我有一个数据框并绘制了箱线图:

f = plt.figure(figsize=(8,8))
df.boxplot(column='a', by='b')
f.tight_layout()

运行最后一条语句时,我得到:

ValueError: max() arg is an empty sequence

看起来df.boxplot创建了自己的图形。它是否正确?如果是这样,我如何检索 Pandas 创建的图形的句柄?

最佳答案

您可以在boxplot中使用ax关键字参数,如下所示方法

f = plt.figure(figsize=(8,8))
a = f.add_subplot(1,1,1)

df.boxplot(column='a', by='b', ax=a)
f.tight_layout()

关于python - 在 Pandas 中使用特定的图形处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23367087/

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