Выберите столбцы без NA в R
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))
Trustworthy Whale
library(dplyr)
df %>%
select_if(~ !any(is.na(.)))