gpt4 book ai didi

python - iterrow() 时索引超出范围,这怎么可能?

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:48 26 4
gpt4 key购买 nike

我收到错误信息:

5205
(5219, 25)
5221
(5219, 25)
Traceback (most recent call last):
File "/Users/Chu/Documents/dssg2018/sa4.py", line 44, in <module>
df.loc[idx,word]=len(df.iloc[indices[idx]][df[word]==1])/\
IndexError: index 5221 is out of bounds for axis 0 with size 5219

当我遍历数据框时,索引来自迭代器。我不知道这怎么可能? idx直接来自dataframe

bt = BallTree(df[['lat','lng']], metric="haversine")
indices = bt.query_radius(df[['lat','lng']],r=(float(10)/40000)*360)

for idx,row in df.iterrows():
for word in bag_of_words:
if word in row['caption']:
print(idx)
print(df.shape)
df.loc[idx,word]=len(df.iloc[indices[idx]][df[word]==1])/\
np.max([1,len(df.iloc[indices[idx]][df[word]!=1])])

iloc 更改为 loc 得到

/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 /Users/Chu/Documents/dssg2018/sa4.py
(-124.60334244261675, 49.36453144316216, -121.67106179949566, 50.863501888419826)
27
(5219, 25)
/Users/Chu/Documents/dssg2018/sa4.py:42: FutureWarning:
Passing list-likes to .loc or [] with any missing label will raise
KeyError in the future, you can use .reindex() as an alternative.

See the documentation here:
http://pandas.pydata.org/pandas-docs/stable/indexing.html#deprecate-loc-reindex-listlike
df.loc[idx,word]=len(df.loc[indices[idx]][df[word]==1])/\
/Users/Chu/Documents/dssg2018/sa4.py:42: UserWarning: Boolean Series key will be reindexed to match DataFrame index.
df.loc[idx,word]=len(df.loc[indices[idx]][df[word]==1])/\
Traceback (most recent call last):
File "/Users/Chu/Documents/dssg2018/sa4.py", line 42, in <module>
df.loc[idx,word]=len(df.loc[indices[idx]][df[word]==1])/\
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pandas/core/frame.py", line 2133, in __getitem__
return self._getitem_array(key)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pandas/core/frame.py", line 2173, in _getitem_array
key = check_bool_indexer(self.index, key)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pandas/core/indexing.py", line 2023, in check_bool_indexer
raise IndexingError('Unalignable boolean Series provided as '
pandas.core.indexing.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match

最佳答案

你的 index 不是从 0len(df)-1,这将使 df.iloc[idx] 越界

例如

df = pd.DataFrame({'a': [0, 1]},index=[1,100])

for idx,row in df.iterrows():
print(idx)
print(row)

1
a 0
Name: 1, dtype: int64
100
a 1
Name: 100, dtype: int64

然后当你做

df.iloc[100]

IndexError: single positional indexer is out-of-bounds

但是当您执行 .loc 时,您会得到预期的输出。

df.loc[100]
Out[23]:
a 1
Name: 100, dtype: int64

来自文件:

.iloc:iloc[] 主要基于整数位置

.loc:.loc[] 主要基于标签

解决方案:

使用 .locdf=df.reset_index(drop=True)

关于python - iterrow() 时索引超出范围,这怎么可能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47665812/

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