March 2019
Beginner to intermediate
448 pages
13h 14m
English
We will use the following steps to perform ANOVA:
library(dplyr) r = read.csv("./2wayanova.csv") r = r[-c(22,44),]
type1 = aov(Sales ~ Colour + Font + Font*Colour,data=r ) summary(type1)
This results in the following output:

Read now
Unlock full access