Last chance! 50% off unlimited learning
Sale ends in
Dataset to illustrate one-way and Two-way analysis of variance
data(senso)
Dataset with 45 rows and 3 columns: Score, Product and Day
## Example of 2-way analysis of variance
data(senso)
res <- AovSum (Score~ Product + Day, data=senso)
res
## Example of 2-way analysis of variance with interaction
data(senso)
res2 <- AovSum (Score~ Product + Day + Product : Day, data=senso)
res2
Run the code above in your browser using DataLab