update(object, formula, ..., evaluate=T, class)
# refit, unchanged update(glmob) # refit, adding term update(glmob, ~ . + Age) # transform response to log scale; drop intercept update(lmob, log(.) ~ . -1) # use all the 2nd order interactions of previous fit update(lmob,~ .^2) #remove the model argument, supply a subset update(gamob, mod=, subset = Age>25)