drüben im statistik-forum hat gerade jemand nach Auswertungsmöglichkeiten gefragt, der eine Kontingenztabelle erhoben hat (hier nicht wichtige Details unter http://www.statistik-forum.de/allgemein ... 12079.html ). Tabelle und Exakter Test nach Fisher sehen so aus:
Code: Alles auswählen
m <- matrix(c(1,309, 2, 44), nrow=2)
rownames(m) <- c("tot", "lebend")
colnames(m) <- c("ohneOP", "mitOP")
fisher.test(m)
Code: Alles auswählen
> fisher.test(m)
Fisher's Exact Test for Count Data
data: m
p-value = 0.04507
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
0.00121036 1.41309680
sample estimates:
odds ratio
0.07218669
Ich bitte um Erleuchtung!
Bernhard