Nothing
#' Missing value check
#'
#' Checks if there are any missing values in a given column from the dataset.
#' @param name Column in which missing values will be sought.
#' @param column Column name, in string format.
#' @return No return, only performs a check.
#' @export
check_function <- function(name, column){
if(any(is.na(name))){
stop(paste('Missing',column,'! Check the food data!'))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.