1. 程式人生 > >pandas通過索引進行排序

pandas通過索引進行排序

import pandas as pd
df = pd.DataFrame([1, 2, 3, 4, 5], index=[10, 52, 24, 158, 112], columns=['S'])
df.sort_index(inplace=True)
print df