Wählen Sie Spalten ohne NA in r
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))
Trustworthy Whale
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))