My first ANOVA with R

Since SPSS is getting worse with every release, I did some R experiments (now that I’ll probably never need it anymore). My first ANOVA with a dataset included in R:

data("LifeCycleSavings")
head(LifeCycleSavings)
g <- lm(sr ~ pop15, LifeCycleSavings)
anova(g)

This should work out of the box like that.

Tags: , ,

2 Responses to “My first ANOVA with R”

  1. Renato says:

    Yeahh, congrats :-) Langsam kommen die Leute im Insti auf den Geschmack!

  2. Johnny says:

    Maybe you can even handle T-Tests without having to rewrite 0,95 to 0.95 every time by hand as in SPSS16 for OS X.

    Good luck!

Leave a Reply