update.fac.aov(object, formula.new, ...)
In all other cases, the value returned by update is the same as that returned by fac.aov.
buffer.fac <- fac.aov(buffer.df) summary(buffer.fac) pareto(buffer.fac)# now compare the results of update and fac.aov # for fitting a reduced model buffer.rmod <- update(buffer.fac, ~ pH*thimer + pH*gent) summary(buffer.rmod) pareto(buffer.rmod) buffer.fac2 <- fac.aov(rate~pH*thimer+pH*gent,buffer.df) summary(buffer.fac2) pareto(buffer.fac2)
# look at diagnostic plots for the reduced model plot(buffer.rmod)
# refit using a transformation of the response buffer.sqrt <- update(buffer.fac, sqrt(rate) ~ .)