I have a df like this:
a b c d
1 1 1 1
2 2 3 NA
3 NA NA 2
4 NA 2 NA
5 NA NA NA
Is it possible to get a count of how many rows doesn't have non missing values on all variables, so for example here it will return 4 as the rest of the rest have at least one none NA value on some of it's variables.