Nothing
#' Change to Numeric Form
#'
#' @param x vector
#' @param value anything, which will be ignored
#'
#' @return numeric data
#' @export
#'
#' @examples
#' x=c(1,2,3)
#' to.factor(x) <- 1
#' to.numeric(x) <- 1
`to.numeric<-` <- function(x,value){
as.numeric(as.character(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.