Here's the extreme simplification of my data
Column1 Column2 Column3 Column4
yue 78 758 uyf
tue 78 785 uyf
My Expected output
Column2 Column3
78 758
78 785
What I did currently is using df.describe()
and after that look all parameter who has 0 in standard deviation and drop column manually like df[['Column2', 'Column3']] in this case, but currently I have nore than 200 columns
Regards