gpt4 book ai didi

excel - 传说中的pandas python中的"None"

转载 作者:行者123 更新时间:2023-12-02 16:54:38 25 4
gpt4 key购买 nike

我正在使用带有 Python 2.7 的 WinPython Notebook。所以我正在阅读几个这样的 DataFrame:

run[y2][y3][x] = pd.read_excel(xls_file, x)

当我使用:

run[y2][y3][x].plot()

我得到了包含 3 条线的漂亮图,以及一个描述这些线的图例,就像列顶部的 Excel 文件中一样。

但是,当我这样绘制时:

run[case]['fluent'][var].plot(x = 'r', y = 'inlet')

我在图例中得到的只是“无”。即使我在 .plot() 部分使用 label = 'inlet'

http://postimg.org/image/l4akauycz/

最佳答案

这是 pandas 中的一个错误,将在即将发布的 0.16.1 版本中修复(请参阅 https://github.com/pydata/pandas/pull/9574 )。

目前可能的解决方法是将 y 列作为列表提供:

df.plot(x='r', y=['inlet'])

关于excel - 传说中的pandas python中的"None",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29989863/

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