R/Str2Num.R

Defines functions Str2Num

## transite a string into a serial of numbers
Str2Num <- function(S)
{
    y <- as.numeric(strsplit(S, '')[[1]])

    return(y)
}

Try the AssocTests package in your browser

Any scripts or data that you put into this service are public.

AssocTests documentation built on Jan. 13, 2021, 5:09 a.m.