Update method for cumulative link models fitted with clm2
.
This makes it possible to use e.g.
update(obj, location = ~ . - var1, scale = ~ . + var2)
# S3 method for clm2
update(object, formula., location, scale, nominal,...,
evaluate = TRUE)
# S3 method for clmm2
update(object, formula., location, scale, nominal,...,
evaluate = TRUE)
If evaluate = TRUE
the fitted object is returned,
otherwise the updated call.
a clm2
object.
not used---unfortunately this argument is part of the default method.
an optional new formula for the location; see
update.formula
for details.
an optional new formula for the scale; see
update.formula
for details.
an optional new formula for nominal effects; see
update.formula
for details.
additional arguments to the call, or arguments with changed values.
if true evaluate the new call else return the call.
Rune Haubo B Christensen
options(contrasts = c("contr.treatment", "contr.poly"))
m1 <- clm2(SURENESS ~ PROD, scale = ~PROD, data = soup,
link = "logistic")
m2 <- update(m1, link = "probit")
m3 <- update(m1, link = "cloglog")
m4 <- update(m1, link = "loglog")
anova(m1, update(m1, scale = ~.-PROD))
mT1 <- update(m1, threshold = "symmetric")
Run the code above in your browser using DataLab