python设置index

方法:python的set_index()方法
使用时要注意:set_index()括号里的必须为DataFrame中的一列,或者是一个Series对象
python设置index
python设置index
如果将range直接作为index 会报错,说range不是dataframe中的一列
但是当dataframe中没有我们想要的列作为index时,怎么办呢?
我们可以用到pd.Series(range(1,31)) 创建一个Series对象。
将Series对象作为index
python设置index

上一篇:Pandas数据结构简要概述


下一篇:pandas数据处理学习笔记(三)