Python将DataFrame的某一列作为index的方法

下面代码实现了将df中的column列作为index

df.set_index(["Column"], inplace=True)

相关推荐