R Code For Linear Regression Analysis 1 Way ANOVA
R Code For Linear Regression Analysis 1 Way ANOVA
hist(y)
boxplot(y)
M1<- lm(y~x)
ss <- summary(M1) # To print summary of results of fitted line
ss
#ANOVA Table
Aov <- aov (y~x)
summary(Aov)
BY YISIHAK M. 1
library(lattice)
library(PASWR)
checking.plots(Aov)
# Breusch-Pagan Test
#H0: Homoscedasticity. The errors have constant variance about the true model.
#H1: Heteroscedasticity. The errors have non-constant variance about the true model.
#install.packages(lmtest)
library(lmtest)
bptest(M1)
hist(y)
boxplot(y)
M2<-lm(y~x+z) #multiple linear regression
ss<-summary(M2) # To print summary of results of fitted line
ss
BY YISIHAK M. 2
One - way ANOVA
We’re going to use a data set called InsectSprays. 6 different insect sprays (1 Independent
Variable with 6 levels) were tested to see if there was a difference in the number of insects
found in the field after each spraying (Dependent Variable).
> attach(InsectSprays)
> data(InsectSprays)
> str(InsectSprays)
'data.frame': 72 obs. of 2 variables:
$ count: num 10 7 20 14 14 12 10 23 17 20 ...
$ spray: Factor w/ 6 levels "A","B","C","D",..: 1 1 1 1 1 1 1 1 1 1 ...
1. Descriptive statistics
a. Mean, variance, number of elements in each cell
b. Visualise the data – boxplot; look at distribution, look for outliers
We’ll use the tapply() function which is a helpful shortcut in processing data, basically
allowing you to specify a response variable, a factor (or factors) and a function that should be
applied to each subset of the response variable defined by each level of the factor. I.e. Instead
of doing:
> mean(count[spray=="A"])# and the same for B, C, D etc.
We use tapply(response,factor,function-name) as follows
Let’s look at the means:
> tapply(count, spray, mean)
A B C D E F
14.500000 15.333333 2.083333 4.916667 3.500000 16.666667
The variances:
> tapply(count, spray, var)
A B C D E F
22.272727 18.242424 3.901515 6.265152 3.000000 38.606061
And a boxplot:
> boxplot(count ~ spray)
BY YISIHAK M. 3
A couple of Asides
Default order is alphabetical. R needs, for example, the control condition to be 1st for
treatment contrasts to be easily interpreted.
If they’re not automatically in the correct order – i.e. if they were ordered variables, but
came out alphabetically (e.g. "Very.short","Short","Long","Very.long" or “A”, “B”,
“Control”), re-order the variables for ordered IV:
To change to, for example, F < B < C < D < E < A, use:
> Photoperiod<-ordered(spray,levels=c("F","B","C","D","E","A"))
Check it:
> tapply(count,Photoperiod,mean)
F B C D E A
16.666667 15.333333 2.083333 4.916667 3.500000 14.500000
If you want to check that a variable is a factor (especially for variables with numbers as
factor levels). We use the is.factor directive to find this out
is.factor(spray)
[1] TRUE
2. Run 1-way ANOVA
a. Oneway.test ( )
Use, for example:
> oneway.test(count~spray)
One-way analysis of means (not assuming equal variances)
data: count and spray
F = 36.0654, num df = 5.000, denom df = 30.043, p-value = 7.999e-12
Default is equal variances (i.e. homogeneity of variance) not assumed – i.e. Welch’s
correction applied (and this explains why the denom df (which is normally k*(n-1)) is not
a whole number in the output)
o To change this, set "var.equal=" option to TRUE
Oneway.test( ) corrects for non-homogeneity, but doesn’t give much information – i.e.
just F, p-value and dfs for numerator and denominator – no MS etc.
Use this function and store output and use extraction functions to extract what you need.
> aov.out = aov(count ~ spray, data=InsectSprays)
> summary(aov.out)
BY YISIHAK M. 4
F(5,66) = 34.7; p < .000
3. Post Hoc tests
Implicitly this can be understood as a set of (non-orthogonal) contrasts of the first group
against each of the other groups. R uses these so-called ‘Treatment’ contrasts as the default,
but you can request alternative contrasts (see later)
BY YISIHAK M. 5
5. Test assumptions
a. Homogeneity of variance
bartlett.test(count ~ spray, data=InsectSprays)
Bartlett test of homogeneity of
variances data: count by spray
Bartlett's K-squared = 25.9598, df = 5, p-value = 9.085e-05
Significant result, therefore variances cannot be assumed to be equal
b. Model checking plots
> plot(aov.out) # the aov command prepares the data for these plots
This shows if there is a pattern in the residuals, and ideally should show similar scatter
BY YISIHAK M. 6
for each condition. Here there is a worrying effect of larger residuals for larger fitted
values. This is called ‘heteroscedascity’ meaning that not only is variance in the
response not equal across groups, but that the variance has some specific relationship
with the size of the response. In fact you could see this in the original boxplots. It
contradicts assumptions made when doing an ANOVA.
This looks for normality of the residuals; if they are not normal, the assumptions of
ANOVA are potentially violated.
This is like the first plot but now to specifically test if the residuals increase with the
fitted values, which they do.
BY YISIHAK M. 7
This gives an idea of which levels of the factor are best fitted.
BY YISIHAK M. 8