如果一个Series要想知道这一列的值中大于2的所有行索引,怎么写
时间: 2024-02-11 13:05:22 浏览: 147
pandas 选取行和列数据的方法详解
可以使用 Pandas 中的条件筛选功能来查找 Series 中大于 2 的所有行索引。以下是实现代码:
```python
import pandas as pd
s = pd.Series([1, 3, 5, 2, 4, 6])
# 使用条件筛选功能查找 Series 中大于 2 的所有行索引
index_greater_than_2 = s[s > 2].index
print(index_greater_than_2)
```
输出结果为:
```
Int64Index([1, 2, 4, 5], dtype='int64')
```
其中 `Int64Index` 对象表示大于 2 的行索引。
阅读全文