demo/cs33.r

data (skulls.df)
boxplot(measurement~year,main="Skull measurements by year",xlab="year",ylab="skull measurement", data=skulls.df)
summaryStats(measurement~year,data=skulls.df)
skulls.df<-within(skulls.df,{year.F<-factor(year)})
skull.fit<-lm(measurement~year.F,data=skulls.df)
eovcheck(skull.fit)
normcheck(skull.fit)
summary1way(skull.fit)
multipleComp(skull.fit)

Try the s20x package in your browser

Any scripts or data that you put into this service are public.

s20x documentation built on Aug. 21, 2023, 5:07 p.m.