Python pandas dataframe sort_values does not work
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have the following pandas data frame which I want to sort by 'test_type' test_type tps mtt mem cpu 90th 0 sso_1000 205.263559 4139.031090 24.175933 34.817701 4897.4766 1 sso_1500 201.127133 5740.741266 24.599400 34.634209 6864.9820 2 sso_2000 203.204082 6610.437558 24.466267 34.831947 8005.9054 3 sso_500 189.566836 2431.867002 23.559557 35.787484 2869.7670 My code to load the dataframe and sort it is, the first print line prints the data frame above. df = pd.read_csv(file) #reads from a csv file print df df = df.sort_values(by=['test_type'