#' Getting rid of NA values
#'
#' @param data is a data frame
#' @return product is the data frame without NA's
NONA <- function(data){
product <- na.omit(data)
if (any(is.na(product)) == TRUE){
return("TRUE - contains NA's")
}
return(product)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.