R/log.est.R

Defines functions logEst

# Internal documentation -------------------------------------------------------
#
# Log-transformation

logEst <- function(y) {
  y <- log(y)
  return(y)
}

Try the smicd package in your browser

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

smicd documentation built on June 22, 2024, 10:50 a.m.