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: r, spss, statistics
Yeahh, congrats
Langsam kommen die Leute im Insti auf den Geschmack!
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!