#' Removes NAs from assorted dataframes
#'
#' @param Dataframe A dataframe
#' @return Dataframe
#' @export
CleanNAs <- function(Dataframe) {
Dataframe <- drop_na(Dataframe)
if (is.data.frame(Dataframe) == FALSE){
return("This must be a dataframe")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.