blob: 5c771d2f875a209a3af436cb7e00d8ba80579eab [file] [log] [blame]
ben-aaron188287b30b2022-09-11 16:46:37 +02001#' Convert character vector of numeric values into a numeric vector
2#'
3#' @description
4#' Converts a character vector of numeric values into a numeric vector
5#' @param x a character vector of numeric values
6#'
7#' @return A numeric vector
8#' @examples
9#' to_numeric('12312')
10#' @export
11to_numeric = function(x){
12 proxy = as.numeric(as.character(x))
13 return(proxy)
14}