Seleccione columnas sin NA en R
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))
Trustworthy Whale
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))