R/chartodec.R

Defines functions chartodec

Documented in chartodec

chartodec <-
function(cvec,ndec){
#  chartodec()  -  char vector cvec to decimal number (or NA) vector dvec
#      ie - use function on one trait (= one col of df)
  if(!is.character(cvec)){
    stop("chartodec: argument cvec must be of type character\n")
  }
  dvec <- as.numeric(cvec)/(10^ndec)
  return(dvec)
}

Try the dmm package in your browser

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

dmm documentation built on July 26, 2023, 5:23 p.m.