F test to compare two variances
alternative hypothesis: true ratio of variances is not equal to 1
Wieso rechnest Du das? Wolltest Du nicht vielmehr Mittelwertsunterschiede
untersuchen?
Mit freundlichen Grüßen
P.
F test to compare two variances
alternative hypothesis: true ratio of variances is not equal to 1
> datensatz <- data.frame( licht=c(rep("Ref",48),rep("Opt",48)),
+ verkauf = c(RefSalatA,OptSalatA) )
>
> summary( aov(verkauf ~ licht, data=datensatz) )
Df Sum Sq Mean Sq F value Pr(>F)
licht 1 106 106.26 1.231 0.27
Residuals 94 8115 86.33
> datensatz <- data.frame( licht=c(rep("Ref",48),rep("Opt",48)),
+ verkauf = c(RefSalatA,OptSalatA) )
>
> summary( aov(verkauf ~ licht, data=datensatz) )
Df Sum Sq Mean Sq F value Pr(>F)
licht 1 106 106.26 1.231 0.27
Residuals 94 8115 86.33
> t.test( RefSalatA, OptSalatA, paired=FALSE )
Welch Two Sample t-test
data: RefSalatA and OptSalatA
t = -1.1094, df = 93.894, p-value = 0.2701
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-5.870049 1.661715
sample estimates:
mean of x mean of y
19.29167 21.39583
Wenn Du wüsstest, was ich noch alles für Tests kenne
Zurück zu Mittelwert, Standardabweichung & Co.
Mitglieder in diesem Forum: 0 Mitglieder und 12 Gäste