#' rmNArows
#'
#' Get rid of rows from a data frame that are entirely NA
#'
#' @param d the data frame you want to filter
#' @return filtered x data frame
#' @export
#'
rmNArows<-function(d){
goodRows<-apply(d,1,function(x) sum(is.na(x))!=ncol(d))
d[goodRows,]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.