pandas 按照指定顺序进行列排序
将排序列设置成“category”数据类型
list_custom = ['b', 'a', 'c']
df['words'] = df['words'].astype('category')
df['words'].cat.reorder_categories(list_custom, inplace=True)
df.sort_values('words', inplace=True)
出处:博客园:http://www.cnblogs.com/lemonbit/