how can I find the columns which have a value in every row My pd.DataFrame looks like this:
A B C D
1 1 2 3 2
2 2 2 1
3 3 2 1
i would like to get this output
B D
1 2 2
2 2 1
3 3 1
how can i detect the right columns?
Thank you, R