gpt4 book ai didi

python - Pandas 错误 : 'DataFrame' object has no attribute 'loc'

转载 作者:太空狗 更新时间:2023-10-29 22:22:59 25 4
gpt4 key购买 nike

我是 pandas 的新手,正在尝试 Pandas 0.10.1 版的 Pandas 10 分钟教程。但是,当我执行以下操作时,出现如下所示的错误。 print df 工作正常。

为什么 .loc 不起作用?

代码

import numpy as np
import pandas as pd

df = pd.DataFrame(np.random.randn(6,4), index=pd.date_range('20130101', periods=6), columns=['A','B','C','D'])
df.loc[:,['A', 'B']]

错误:

AttributeError                            Traceback (most recent call last)
<ipython-input-4-8513cb2c6dc7> in <module>()
----> 1 df.loc[:,['A', 'B']]

C:\Python27\lib\site-packages\pandas\core\frame.pyc in __getattr__(self, name)
2044 return self[name]
2045 raise AttributeError("'%s' object has no attribute '%s'" %
-> 2046 (type(self).__name__, name))
2047
2048 def __setattr__(self, name, value):

AttributeError: 'DataFrame' object has no attribute 'loc'

最佳答案

我在处理 pyspark DataFrame 时遇到了这个问题。因此,如果您还使用 pyspark DataFrame,则可以使用 toPandas() 方法将其转换为 pandas DataFrame。

关于python - Pandas 错误 : 'DataFrame' object has no attribute 'loc' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16363233/

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