-
Notifications
You must be signed in to change notification settings - Fork 0
ANOVA
Thushara TK edited this page Nov 24, 2020
·
1 revision
Compares if difference between group means are significant enough to classify them into different groups
FStatistic =
aov(sales~Parking)
summary(aov(sales~Parking))
critical value = qf(.95,3,893)
probability of the FStatistic = 1-pf(3.129,3,893) //Area Under the curve to the rightside of critical value
pf(