Skip to content
Advertisement

pandas df – sort on index but exclude first column from sort

I want to sort this df on rows (‘bad job’) but I want to exclude the first column from the sort so it remains where it is:

JavaScript

expected output:

JavaScript

I don’t know to edit my code below to exclude the 1st column from the sort:

JavaScript

Advertisement

Answer

Use argsort with add 1 for possible add first value 0 by reindex for positions, last change columns order by iloc:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement