pandas dataframe column to index

把datafram某个字段设为行索引

df = pd.DataFrame({'id':[1,2,3],'b':[4,5,6],'c':[7,8,9]})

df = df.set_index('id')

留言

熱門文章