Answers for "if we want to normalise all columns except one column in python than"

1

pandas select all columns except one

df.loc[:, df.columns != 'b']

          a         c         d
0  0.561196  0.013768  0.772827
1  0.882641  0.615396  0.075381
2  0.368824  0.651378  0.397203
3  0.788730  0.568099  0.869127
Posted by: Guest on May-06-2020

Code answers related to "if we want to normalise all columns except one column in python than"

Python Answers by Framework

Browse Popular Code Answers by Language