Series的索引和值
时间: 2024-05-13 10:14:14 浏览: 123
Pandas中Series和DataFrame的索引实现
在 Pandas 中,Series 的索引是通过 index 属性访问的,而值是通过 values 属性访问的。
例如,假设有一个 Series 对象 s,可以通过以下方式获取其索引和值:
```
import pandas as pd
s = pd.Series([1, 2, 3], index=['a', 'b', 'c'])
print(s.index) # 输出 Index(['a', 'b', 'c'], dtype='object')
print(s.values) # 输出 [1 2 3]
```
在上面的例子中,s 的索引是 ['a', 'b', 'c'],值是 [1, 2, 3]。可以通过 index 属性获取索引,通过 values 属性获取值。
阅读全文