| drop_if_na | R Documentation | 
Valuable mostly for its warning.
drop_if_na(dfm, x)
dfm | 
 A dataframe.  | 
x | 
 String giving a column name of   | 
A dataframe.
tidyr::drop_na().
dfm <- data.frame(a = 1, b = NA)
drop_if_na(dfm, "b")
drop_if_na(dfm, "a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.