I'm new to tidy evaluation- although some things make sense, I usually just try different combinations of {{}}, !! + quo, sym() etc.
But I can't get is.na() to work? here's an example:
column <- "Sepal.Length"
iris_na <- rbind(iris, rep(NA,5))
iris_na %>%
subset(is.na(column))