I\'d like to remove the lines in this data frame that:
a) contain NAs across all columns. Below is my example data frame.
NA
Using dplyr package we can filter NA as follows:
dplyr::filter(df, !is.na(columnname))