Skip to content
Prev 10583 / 398502 Next

anova table

On Wednesday 04 April 2001 07:20, George A. Dowding wrote:
Try help(aov). Basically, you will have to  bring your data into a form like

treatment	response
1		.8
1		.2
2		1.6
2		1.1
...		...

and then use something like

model <- aov(response~treatment)
summary(model)

This will give you a standard ANOVA table.

Cheers (and good luck with the assignment)

Kaspar