View source: R/residualCenter.R
residualCenter | R Documentation |
Given a fitted lm
, this function scans for coefficients
estimated from "interaction terms" by checking for colon
symbols. The function then calculates the "residual centered"
estimate of the interaction term and replaces the interaction term
with that residual centered estimate. It works for any order of
interaction, unlike other implementations of the same
approach. The function lmres
in the now-archived package
pequod was a similar function.
Calculates predicted values of residual centered interaction regressions estimated in any type of regression framework (lm, glm, etc).
residualCenter(model) ## Default S3 method: residualCenter(model) ## S3 method for class 'rcreg' predict(object, ...)
model |
A fitted lm object |
object |
Fitted residual-centered regression from residualCenter |
... |
Other named arguments. May include newdata, a dataframe of predictors. That should include values for individual predictor, need not include interactions that are constructed by residualCenter. These parameters that will be passed to the predict method of the model. |
a regression model of the type as the input model, with the exception that the residualCentered predictor is used in place of the original interaction. The return model includes new variable centeringRegressions: a list including each of the intermediate regressions that was calculated in order to create the residual centered interaction terms. These latter objects may be necessary for diagnostics and to calculate predicted values for hypothetical values of the inputs. If there are no interactive terms, then NULL is returned.
Paul E. Johnson pauljohn@ku.edu
Little, T. D., Bovaird, J. A., & Widaman, K. F. (2006). On the Merits of Orthogonalizing Powered and Product Terms: Implications for Modeling Interactions Among Latent Variables. Structural Equation Modeling, 13(4), 497-519.
set.seed(123) x1 <- rnorm(100) x2 <- rnorm(100) x3 <- rnorm(100) x4 <- rnorm(100) y <- rnorm(100) dat <- data.frame(y, x1,x2,x3,x4) rm(x1,x2,x3,x4,y) m1 <- lm(y~ x1*x2 + x4, data = dat) m1RC <- residualCenter(m1) m1RCs <- summary(m1RC) ## The stage 1 centering regressions can be viewed as well ## lapply(m1RC$rcRegressions, summary) ## Verify residualCenter() output against the manual calculation dat$x1rcx2 <- as.numeric(resid(lm(I(x1*x2) ~ x1 + x2, data = dat))) m1m <- lm(y ~ x1 + x2 + x4 + x1rcx2, data=dat) summary(m1m) cbind("residualCenter" = coef(m1RC), "manual" = coef(m1m)) m2 <- lm(y~ x1*x2*x3 + x4, data=dat) m2RC <- residualCenter(m2) m2RCs <- summary(m2RC) ## Verify that result manually dat$x2rcx3 <- as.numeric(resid(lm(I(x2*x3) ~ x2 + x3, data = dat))) dat$x1rcx3 <- as.numeric(resid(lm(I(x1*x3) ~ x1 + x3, data = dat))) dat$x1rcx2rcx3 <- as.numeric( resid(lm(I(x1*x2*x3) ~ x1 + x2 + x3 + x1rcx2 + x1rcx3 + x2rcx3 , data=dat))) (m2m <- lm(y ~ x1 + x2 + x3+ x4 + x1rcx2 + x1rcx3 + x2rcx3 + x1rcx2rcx3, data = dat)) cbind("residualCenter" = coef(m2RC), "manual" = coef(m2m)) ### As good as pequod's lmres ### not run because pequod generates R warnings ### ### if (require(pequod)){ ### pequodm1 <- lmres(y ~ x1*x2*x3 + x4, data=dat) ### pequodm1s <- summary(pequodm1) ### coef(pequodm1s) ### } ### Works with any number of interactions. See: m3 <- lm(y~ x1*x2*x3*x4, data=dat) m3RC <- residualCenter(m3) summary(m3RC) ##' ## Verify that one manually (Gosh, this is horrible to write out) dat$x1rcx4 <- as.numeric(resid(lm(I(x1*x4) ~ x1 + x4, data=dat))) dat$x2rcx4 <- as.numeric(resid(lm(I(x2*x4) ~ x2 + x4, data=dat))) dat$x3rcx4 <- as.numeric(resid(lm(I(x3*x4) ~ x3 + x4, data=dat))) dat$x1rcx2rcx4 <- as.numeric(resid(lm(I(x1*x2*x4) ~ x1 + x2 + x4 + x1rcx2 + x1rcx4 + x2rcx4, data=dat))) dat$x1rcx3rcx4 <- as.numeric(resid(lm(I(x1*x3*x4) ~ x1 + x3 + x4 + x1rcx3 + x1rcx4 + x3rcx4, data=dat))) dat$x2rcx3rcx4 <- as.numeric(resid(lm(I(x2*x3*x4) ~ x2 + x3 + x4 + x2rcx3 + x2rcx4 + x3rcx4, data=dat))) dat$x1rcx2rcx3rcx4 <- as.numeric(resid(lm(I(x1*x2*x3*x4) ~ x1 + x2 + x3 + x4 + x1rcx2 + x1rcx3 + x2rcx3 + x1rcx4 + x2rcx4 + x3rcx4 + x1rcx2rcx3 + x1rcx2rcx4 + x1rcx3rcx4 + x2rcx3rcx4, data=dat))) (m3m <- lm(y ~ x1 + x2 + x3 + x4 + x1rcx2 + x1rcx3 + x2rcx3 + x1rcx4 + x2rcx4 + x3rcx4 + x1rcx2rcx3 + x1rcx2rcx4 + x1rcx3rcx4 + x2rcx3rcx4 + x1rcx2rcx3rcx4, data=dat)) cbind("residualCenter"=coef(m3RC), "manual"=coef(m3m)) ### If you want to fit a sequence of models, as in pequod, can do. tm <-terms(m2) tmvec <- attr(terms(m2), "term.labels") f1 <- tmvec[grep(":", tmvec, invert = TRUE)] f2 <- tmvec[grep(":.*:", tmvec, invert = TRUE)] f3 <- tmvec[grep(":.*:.*:", tmvec, invert = TRUE)] ## > f1 ## [1] "x1" "x2" "x3" "x4" ## > f2 ## [1] "x1" "x2" "x3" "x4" "x1:x2" "x1:x3" "x2:x3" ## > f3 ## [1] "x1" "x2" "x3" "x4" "x1:x2" "x1:x3" "x2:x3" ## [8] "x1:x2:x3" f1 <- lm(as.formula(paste("y","~", paste(f1, collapse=" + "))), data=dat) f1RC <- residualCenter(f1) summary(f1RC) f2 <- lm(as.formula(paste("y","~", paste(f2, collapse=" + "))), data=dat) f2RC <- residualCenter(f2) summary(f2RC) f3 <- lm(as.formula(paste("y","~", paste(f3, collapse=" + "))), data=dat) f3RC <- residualCenter(f3) summary(f3RC) library(rockchalk) dat <- genCorrelatedData(1000, stde=5) m1 <- lm(y ~ x1 * x2, data=dat) m1mc <- meanCenter(m1) summary(m1mc) m1rc <- residualCenter(m1) summary(m1rc) newdf <- apply(dat, 2, summary) newdf <- as.data.frame(newdf) predict(m1rc, newdata=newdf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.