小编典典

遍历大pandas系列

python

我想绕过系列索引

In [44]: type(ed1)
Out[44]: pandas.core.series.Series

In [43]: for _, row  in ed1.iterrows():
...:     print(row.name)

我得到错误:

  AtributeError: 'Series' ojbect has no attribute 'iterrows'

系列有类似迭代的方法吗?非常感谢


阅读 222

收藏
2021-01-20

共1个答案

小编典典

Series对象定义一个 iteritems 方法(数据作为索引值对的迭代器返回。

for _, val in ed1.iteritems():
    ...

或者,您可以通过调用来遍历列表 tolist

for val in ed1.tolist():
    ...

通常不建议在熊猫对象上进行迭代。尽可能地进行向量化。

2021-01-20