Hallo Squirrel,
Wie PonderStibbons gezeigt hat, gibt es viele kostenlose Calculatoren. Ich habe im Beispiel oben auch kostenlose Software benutzt, die Du aber auf Deinem Rechner installieren musst. Es handelt sich um R:
www.r-project.orgIst R installiert und gestartet, öffnet sich ein Fenster, in das man Befehle tippt (bzw. mit Copy&Paste aus einem Editor einfügt). In Deinem Fall z. B.
- Code: Alles auswählen
F1<-c(291, 290, 382, 389, 405, 414, 419, 434, 523, 596, 642, 844, 918)
F0<-c(274, 221, 243, 216, 218, 252, 259, 250, 240, 222, 238, 212, 222)
cor.test(F0, F1)
Die Ausgabe lautet dann
- Code: Alles auswählen
Pearson's product-moment correlation
data: F0 and F1
t = -1.7297, df = 11, p-value = 0.1116
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.8076294 0.1188518
sample estimates:
cor
-0.462415
Ich denke, dieses Beispiel kannst Du recht leicht an weitere Datensätze anpassen. Die Verwendung einer dezidierten Software hat zwei Vorteile. Erstens, kannst Du damit noch viele andere Sachen machen, beispielsweise in zwei Zeilen ein Streudiagramm mit Regressionsgerade zeichnen:
- Code: Alles auswählen
plot(F0, F1)
abline(lm(F1~F0))
Außerdem kommt es, je nachdem was für eine Arbeit Du da schreibst, wahrscheinlich besser, wenn Du eine Statistiksoftware und keinen online-Calculator zitierst. R hat klare Vorstellungen davon, wie es zitiert werden will:
- Code: Alles auswählen
> citation()
To cite R in publications use:
R Core Team (2012). R: A language and environment for statistical
computing. R Foundation for Statistical Computing, Vienna, Austria.
ISBN 3-900051-07-0, URL http://www.R-project.org/.
A BibTeX entry for LaTeX users is
@Manual{,
title = {R: A Language and Environment for Statistical Computing},
author = {{R Core Team}},
organization = {R Foundation for Statistical Computing},
address = {Vienna, Austria},
year = {2012},
note = {{ISBN} 3-900051-07-0},
url = {http://www.R-project.org/},
}
We have invested a lot of time and effort in creating R, please cite it
when using it for data analysis. See also ‘citation("pkgname")’ for
citing R packages.
LG,
Bernhard