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