Skip to content

Instantly share code, notes, and snippets.

@tedder
Created December 20, 2011 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tedder/1502908 to your computer and use it in GitHub Desktop.
Save tedder/1502908 to your computer and use it in GitHub Desktop.
aov
dependent variable: acachesize
Df Sum Sq Mean Sq F value Pr(>F)
aepochtime 1 5.3833e+08 5.3833e+08 140.0642 < 2.2e-16 ***
adrops 1 1.2991e+05 1.2991e+05 0.0338 0.854140
amemory 1 1.3598e+10 1.3598e+10 3538.0387 < 2.2e-16 ***
aepochtime:adrops 1 6.7696e+07 6.7696e+07 17.6133 2.76e-05 ***
aepochtime:amemory 1 2.9061e+07 2.9061e+07 7.5612 0.005988 **
adrops:amemory 1 1.9934e+07 1.9934e+07 5.1865 0.022811 *
aepochtime:adrops:amemory 1 2.7078e+07 2.7078e+07 7.0452 0.007977 **
Residuals 4393 1.6884e+10 3.8434e+06
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
dependent variable: aepochtime
> aov.ex1 = aov(aepochtime~acachesize*adrops*aiters*amemory,data=data.ex1)
> summary(aov.ex1)
Df Sum Sq Mean Sq F value Pr(>F)
acachesize 1 52603 52603 84.4933 < 2.2e-16 ***
adrops 1 109387 109387 175.7008 < 2.2e-16 ***
amemory 1 17381 17381 27.9172 1.328e-07 ***
acachesize:adrops 1 3863 3863 6.2042 0.012781 *
acachesize:amemory 1 117450 117450 188.6518 < 2.2e-16 ***
adrops:amemory 1 3088 3088 4.9601 0.025989 *
acachesize:adrops:amemory 1 6553 6553 10.5260 0.001186 **
Residuals 4393 2734972 623
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment