pandas的索引对象负责管理轴标签和其他元数据(比如轴的名称等)。构建Series或 DataFrame时,所用到的任何数组或其他序列的标签都会被转换成一个Index比如:
from pandas import Series,DataFrame
import numpy as np
obj = Series(range(3),index=['a','b','c'])
index = obj.index
print index
Index([u'a', u'b', u'c'], dtype='object')
index对象不可修改,只能访问,比如:
index[1]='d'
这样会报错
每个索引都有一些方法和属性,它们可用于设置逻辑并回答有关该索引所包含的数据的常见问题