search for: regression9

Displaying 1 result from an estimated 1 matches for "regression9".

Did you mean: regression
2007 Feb 06
1
ANOVA Table for Full Linear Model?
...sily obtained in other statistical software tools. I'm not saying this as a gripe, but just as evidence that I'm not trying to do something obviously bizarre. Here is an example of the only kind of ANOVA table for a single linear model that I've been able to get using R: > regression9 <- lm(y ~ x1 + x2 + x3, data=data9) > anova.lm(regression9) Analysis of Variance Table Response: y Df Sum Sq Mean Sq F value Pr(>F) x1 1 8275.4 8275.4 81.8026 2.059e-11 *** x2 1 480.9 480.9 4.7539 0.03489 * x3 1 364.2 364.2 3.5997 0.0646...