powered by
For stratified models, it returns a list of data frames for each stratum.
# S3 method for tramME trafo(object, newdata = NULL, type = c("trafo", "distribution", "survivor", "cumhazard"), confidence = c("none", "interval", "band", "asymptotic"), level = 0.95, K = 50, ...)
A fitted tramME object.
Values of the interacting terms to be used.
The scale on which the transformation function is evaluated.
Pointwise confidence interval or confidence band.
Confidence level.
Integer, number of points in the grid the function is evaluated on.
Additional parameters (for consistency with generic)
Matrix or list of matrices containing the point estimates and the confidence intervals.
# NOT RUN { data("sleepstudy", package = "lme4") fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy) tr <- trafo(fit, type = "distribution", confidence = "interval", K = 100) # }
Run the code above in your browser using DataLab