rsm.lm(formula, data, response, ...)
Response surface designs, by convention, are fit with the experimental factors scaled and centered so that the model coefficients are independent. This has the advantage that terms can be dropped from the model without changing the coefficient or t-statistics of the remaining terms. The variables in an rsm.design object are rsm.factors, that carry information about scaling and centering that is used by rsm.lm (the function as.rsm.design will assist in converting a data.frame to an rsm.design object), that is, the factors are centered and scaled for the scaledfit. The rsm.lm object also returns the coefficients for the natural scale of the factors.
If the coded factors are not orthogonal, the coefficients of the model are not independent, although often nearly so.
Box, G. E. P., W. G. Hunter, J. S. Hunter (1978), Statistics for Experimenters, New York: Wiley.
Haaland, P. D. (1989), Experimental Design in Biotechnology, New York: Marcel Dekker.
abrsm.df #The following two calls are equivalent abrsm.rsm <- rsm.lm(abrsm.df) #the S+DOX convention abrsm.rsm2 <- rsm.lm(TtrVol ~ (RadDos + Prime1)^2 + RadDos^2 + Prime1^2, abrsm.df) #The S-Plus convention summary(abrsm.rsm) pareto(abrsm.rsm) surface(abrsm.rsm) contour(abrsm.rsm) optim(abrsm.rsm)