Having a DF as the example below, how can i get list with the index and column name of the values that arent nan?
es ms hs
subdist_id
1 NaN NaN NaN
2 NaN NaN NaN
3 -0.218066 NaN -0.309002
4 NaN NaN NaN
5 NaN NaN NaN
6 NaN NaN NaN
7 NaN NaN NaN
9 NaN NaN NaN
10 NaN NaN NaN
11 -0.385217 NaN NaN
so i can get a list [[3,'es]', [3,'hs'], [11,'es']]