Nothing
#' Check for presence of NAs and non-numerics in a vector
#'
#' @param x input \code{vector}
#' @return \code{Boolean} of whether the data is good to extract features on or not
#' @author Trent Henderson
#'
check_vector_quality <- function(x){
return(!anyNA(x) && is.numeric(x))
}
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.