R/glog.R

Defines functions glog

Documented in glog

#This function transforms the input values by the generalized #log function.
glog <-
function(y,lambda)
{
  yt <- log(y+sqrt(y^2+lambda))
  return(yt)
}

Try the LMGene package in your browser

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

LMGene documentation built on April 28, 2020, 8:01 p.m.