gpt4 book ai didi

Python BoxPlot 错误 - 'Series' 对象没有属性 'boxplot'

转载 作者:行者123 更新时间:2023-12-05 01:42:39 25 4
gpt4 key购买 nike

我正在尝试创建箱线图,但遇到了这个错误 - “系列”对象没有属性“箱线图”

这是我当前的代码:

fig = plt.figure(figsize=(8,6))
ax = fig.gca()
frame['ArrDelay'].boxplot(ax = ax)
ax.set_title('BoxPlot of ArrDelay')
ax.set_xlabel('ArrDelay')
ax.set_ylabel('Delay Time')

有什么建议吗?

最佳答案

假设您使用的是 pandas DataFrame

fig = plt.figure(figsize=(8,6))
ax = fig.gca()
frame.boxplot(column='ArrDelay', ax=ax)
# frame['ArrDelay'].plot.box(ax=ax) # Alternative
ax.set_title('BoxPlot of ArrDelay')
ax.set_xlabel('ArrDelay')
ax.set_ylabel('Delay Time')

关于Python BoxPlot 错误 - 'Series' 对象没有属性 'boxplot',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51389793/

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