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
x
6
1
Radisson Marriott Hilton IHG
2
Category
3
good job 0.214941 0.40394 0.448931 0.375316
4
bad job 0.514941 0.10394 0.348931 0.475316
5
crap job 0.114941 0.20394 0.548931 0.175316
6
expected output:
JavaScript
1
6
1
Radisson IHG Hilton Marriott
2
Category
3
good job 0.214941 0.375316 0.448931 0.40394
4
bad job 0.514941 0.475316 0.348931 0.10394
5
crap job 0.114941 0.175316 0.548931 0.20394
6
I don’t know to edit my code below to exclude the 1st column from the sort:
JavaScript
1
2
1
df = df.sort_values(by=[df.index[1]], axis=1, ascending=False)
2
Advertisement
Answer
Use argsort
with add 1
for possible add first value 0
by reindex
for positions, last change columns order by iloc
:
JavaScript
1
7
1
s = df.iloc[0]
2
df = df.iloc[:, ((-s[1:]).argsort() + 1).reindex(df.columns, fill_value=0)]
3
print (df)
4
Radisson Hilton Marriott IHG
5
Category
6
good job 0.214941 0.448931 0.40394 0.375316
7