powered by
The function transforms the dependent variable of a linear model using the Glog transformation.
glog(object)
an object of type lm.
An object of class trafo. Methods such as as.data.frame.trafo and print.trafo can be used for this class.
trafo
as.data.frame.trafo
print.trafo
Durbin BP, Hardin JS, Hawkins DM, Rocke DM (2002). A Variance-stabilizing Transformation for Gene-expression Microarray Data. Bioinformatics, 18, 105-110.
# NOT RUN { # Load data data("cars", package = "datasets") # Fit linear model lm_cars <- lm(dist ~ speed, data = cars) # Transform dependent variable glog(object = lm_cars) # }
Run the code above in your browser using DataLab