Created
January 22, 2016 11:16
-
-
Save dwoll/a94b015acaf31ccff37b to your computer and use it in GitHub Desktop.
check dummy.coef_mult
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# check modified dummy.coef.lm(), print.dummy_coef() | |
# example from summary.manova | |
tear <- c(6.5, 6.2, 5.8, 6.5, 6.5, 6.9, 7.2, 6.9, 6.1, 6.3, | |
6.7, 6.6, 7.2, 7.1, 6.8, 7.1, 7.0, 7.2, 7.5, 7.6) | |
gloss <- c(9.5, 9.9, 9.6, 9.6, 9.2, 9.1, 10.0, 9.9, 9.5, 9.4, | |
9.1, 9.3, 8.3, 8.4, 8.5, 9.2, 8.8, 9.7, 10.1, 9.2) | |
opacity <- c(4.4, 6.4, 3.0, 4.1, 0.8, 5.7, 2.0, 3.9, 1.9, 5.7, | |
2.8, 4.1, 3.8, 1.6, 3.4, 8.4, 5.2, 6.9, 2.7, 1.9) | |
Y <- cbind(tear, gloss, opacity) | |
rate <- factor(gl(2, 10), labels = c("Low", "High")) | |
additive <- factor(gl(2, 5, length = 20), labels = c("Low", "High")) | |
fitM <- manova(Y ~ rate * additive) | |
fitU <- lm(tear ~ rate*additive) | |
(dcM <- dummy.coef(fitM)) | |
(dcU <- dummy.coef(fitU)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment