In tidyverse(dplyr) there is something similar like:
colSums(is.na(airquality)) ?
In other words how can I have a dataframe with one row summarising the number of NA values from each column?
I though about to use summarise. But how can I do this?
Any help?
Thanks