From the data frame below, how to delete all the rows where columns [B, C, D] all are having null values?
Input data frame:
A B C D
0 20 NaN 2.0 NaN
1 3 1.0 NaN 2.0
2 44 4.0 NaN NaN
3 67 NaN NaN NaN
4 52 3.0 2.0 NaN
5 8 NaN NaN NaN
Desired output:
A B C D
0 20 NaN 2.0 NaN
1 3 1.0 NaN 2.0
2 44 4.0 NaN NaN
4 52 3.0 2.0 NaN