I have df which looks like this:
Label Base
Label
Très à gauche 4.51
Très à droite 10.49
Ni à gauche, ni à droite 24.21
Je ne sais pas 5.60
Au centre 8.69
A gauche 23.74
A droite 22.75
I would like to sort this in acsending order but I dont want "A gauche" and "A droite" included in the sorting.
The code below does what I want but I'm not sure how to exclude "A gauche" and "A droite" from the sorting.
df_table = df_table.sort(columns="Base",ascending=True)
expected output
Label Base
Label
Très à gauche 4.51
Je ne sais pas 5.60
Au centre 8.69
Très à droite 10.49
Ni à gauche, ni à droite 24.21
A gauche 23.74
A droite 22.75
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…