Update and Re-fit a RSM Model Call
update.rsm
is used to update a rsm
model
formulae. This typically involves adding or dropping terms, but
updates can be more general.
## S3 method for class 'rsm' update(object, formula., ..., evaluate = TRUE)
object |
a model of class |
formula. |
changes to the formula – see |
... |
additional arguments to the call, or arguments with changed
values. Use |
evaluate |
if |
If evaluate = TRUE
the fitted object, otherwise the updated
call.
Based upon update.default
.
data(houses) houses.rsm <- rsm(price ~ ., family = student(5), data = houses) ## model fit including all covariates ## houses.rsm <- update(houses.rsm, method = "rsm.fit", control = glm.control(trace = TRUE)) ## prints information about the iterative procedure at each iteration ## update(houses.rsm, ~ . - bdroom + offset(7 * bdroom)) ## "bdroom" is included as offset variable with fixed (= 7) coefficient
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.