I have pandas data frame with a lot of missing data.If I go for
d = dfs['REV_PIZ'].isna()
Output is boolean.
0 True
1 True
2 True
3 True
4 True
5 True
6 True
7 True
What I really want is to have d only with numerical values, that would enable me to further maths on this column.