I have a dataframe set up in the following way:
header_1 | header_2 | header_3 | header_4
a b NaN NaN
b c 9 10
x y NaN 8
How can I select using column indexes (the name of the columns change) the rows where header_3 and header_4 are BOTH not NaN? header_3 and header_4 are integers
Thank you