Pandas中关于Series(values, index)索引的整理

  • Post author:
  • Post category:其他


Series(values, index)

Series对象是由索引index以及对应值values组成的。本篇文章集中整理在对Series进行索引时候的方法。


方法一 使用index值进行索引


先创建Series1

import pandas as pd
Series1 = pd.Series([1,2,3,4], index = ['a','b', 'c', 'd'])
Series1
#返回结果
Out[1]: 
a    1
b    2
c    3
d    4
dtype: int64

使用index值索引

Series1['b'] 
#返回结果 
Out[2]: 2

Series1[['a','c']]
#返回结果
Out[3]: 
a    1
c    3
dtype: int64

Series1[



版权声明:本文为Cassie333333原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。