Nothing
#' Non-numeric check
#'
#' Checks if values supposed to be numeric are in fact numeric.
#' @param df Dataframe column.
#' @return No return, only performs a check.
#' @export
check_non_num <- function(df) {
bad_num <- is.na(suppressWarnings(as.numeric(as.character(df))))
if(length(which(bad_num & !is.na(df)))>0) return(0) else return(1)
}
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.