this is a lame question I guess, but i don't understand what's is happining. If I go:
sum(is.na(census$wd))
It returns 4205
But if I go with:
sum(census$wd == NA)
It returns "NA"
I just would like to understand whats is happening. If I do str(census), wd shows up as:
$ wd : num NA 0.65 0.65 0.65 0.78 0.78 0.78 0.78 0.78 0.78 ...
Can anyone explains why the codes return different outputs? Thank you!