blob: 5c771d2f875a209a3af436cb7e00d8ba80579eab [file] [log] [blame]
#' Convert character vector of numeric values into a numeric vector
#'
#' @description
#' Converts a character vector of numeric values into a numeric vector
#' @param x a character vector of numeric values
#'
#' @return A numeric vector
#' @examples
#' to_numeric('12312')
#' @export
to_numeric = function(x){
proxy = as.numeric(as.character(x))
return(proxy)
}