Nothing
#' Applies non-nummeric value check to entire dataframe
#'
#' Checks if values supposed to be numeric are in fact numeric.
#' @param df Dataframe columns.
#' @return No return, only performs a check.
#' @export
check_nom_num_df <- function(df){
if(0 %in% lapply(df, check_non_num)){
stop("Non-nummerical entries in nutrient targets dataset aren't allowed. Check your 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.