powered by
term can be variable groups (baseline/interacting or shift) or names of variables.
term
# S3 method for tramME lpterms( object, newdata = model.frame(object)[, -1L], term = c("baseline", "shift"), type = c("trafo", "distribution", "survivor", "cumhazard"), confidence = c("none", "interval", "band"), level = 0.95, K = 50, ... )
A tramME object.
tramME
A data.frame containing the values at which the functions are evaluated.
data.frame
The names or identifiers of the terms we want to evaluate.
The scale on which the functions are evaluated.
Pointwise confidence interval or confidence band.
Confidence level.
Integer, number of points of 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 <- lpterms(fit, type = "distribution", confidence = "interval", K = 100) # }
Run the code above in your browser using DataLab