glog: glog transformation

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

The glog is a better behaved log transformation when some data values are zero or just near zero.

Usage

1
glog(x, a = 1, InverseQ = FALSE)

Arguments

x

numeric vector of data

a

additive constant, often 1

InverseQ

inverse glog

Details

Basic properties of the glog transformation are illustrated in the Mathematica notebook glog.nb and its pdf version glog.pdf which are available in the package directory doc.

Value

transformated data

Author(s)

A.I. McLeod

References

W. Huber, A. von Heydebreck, H. Sultmann, A. Poustka, and M. Vingron. Variance stablization applied to microarray data calibration and to quantification of differential expression. Bioinformatics, 18: S96-S10 2002.

See Also

bxcx

Examples

1
2
3
4
5
6
7
#usual log transformation doesn't work
all(is.finite(log(sunspot.month)))
#either shifted log
all(is.finite(log(sunspot.month+1)))
#or glog works
all(is.finite(glog(sunspot.month)))
#but glog may be better, especially for values <1 but >=0

FitAR documentation built on May 2, 2019, 3:22 a.m.