1 / 9

Die t-Verteilung (fortgesetzt)

Die t-Verteilung (fortgesetzt). Jonathan Harrington. shapiro.test(), var.test(), wilcox.test(), qqnorm(). t-test Durchführung. zwei Stichproben, x und y. Sind die Mittelwerte von x und y voneinander signifikant unterschiedlich?. pfad = "Das Verzeichnis, wo die Daten gespeichert ist"

Télécharger la présentation

Die t-Verteilung (fortgesetzt)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Die t-Verteilung (fortgesetzt) Jonathan Harrington shapiro.test(), var.test(), wilcox.test(), qqnorm()

  2. t-test Durchführung zwei Stichproben, x und y. Sind die Mittelwerte von x und y voneinander signifikant unterschiedlich? pfad = "Das Verzeichnis, wo die Daten gespeichert ist" mfdat = read.table(paste(pfad, "mfdur.txt", sep="/")) x = mfdat[,1] y = mfdat[,2]

  3. shapiro.test(x) shapiro.test(y) x und y Sind x und y normalverteilt? nein ja Sind die Varianzen von x und y voneinander signifikant unterschiedlich? wilcox.test(x, y) var.test(x, y) nein ja t.test(x,y, var.equal=T) t.test(x,y)

  4. shapiro.test(x) Shapiro-Wilk normality test data: x W = 0.9866, p-value = 0.9037 Die Wahrscheinlichkeit, dass die Werte normalverteilt sind. Wenn p < 0.05 dann weicht die Stichprobe signifikant von einer Normalverteilung ab, und der t-test soll nicht eingesetzt werden.

  5. qqnorm() shapiro.test(x) shapiro.test(y) p-value = 0.9037 p-value = 0.08804 Je mehr die Werte von der geraden Linie abweichen, umso unwahrscheinlicher ist es, dass die Werte einer Normalverteilung folgen. qqnorm(x) qqnorm(y) qqline(x) qqline(x)

  6. var.test() prüft ob die Varianzen der beiden Stichproben voneinander signifikant abweichen. Um signifikante Unterschiede zwischen Varianzen festzustellen, wird ein F-test und die F-Verteilung verwendet – diese Verteilung ist das gleiche wie die t-Verteilung hoch 2.

  7. var(x) [1] 428.9193 var(y) [1] 516.3584 var(x)/var(y) [1] 0.830662 var.test(x,y) F test to compare two variances data: x and y F = 0.8307, num df = 40, denom df = 40, p-value = 0.5601 alternative hypothesis: true ratio of variances is not equal to 1 95 percent confidence interval: 0.4429731 1.5576553 sample estimates: ratio of variances 0.830662 Der Unterschied zwischen den Varianzen ist nicht signifikant (genauer: das Verhältnis zwischen den Varianzen weicht nicht signifikant ab von 1). F = 0.83, df=40, 40, p > 0.05

  8. Wenn keine Normalverteilung Wilcoxon Rank Sum and Signed Rank Tests (Mann-Whitney test) wilcox.test(x, y) Wilcoxon rank sum test with continuity correction data: x and y W = 1246, p-value = 0.0001727 alternative hypothesis: true location shift is not equal to 0 Der Unterschied zwischen x und z ist signifikant. (Wilcoxon rank sum test, W = 1246, p < 0.001)

  9. Normalverteilung, Varianzen sind unterschiedlich t.test(x, y) Welch Two Sample t-test data: x and y t = 3.6947, df = 79.321, p-value = 0.0004031 alternative hypothesis: true difference in means is not equal to 0 95 percent confidence interval: 8.183973 27.297539 sample estimates: mean of x mean of y 97.95751 80.21676 Der Unterschied zwischen x und y ist signifikant (t = 3.69, df = 79.3, p < 0.001) …sonst t.test(x,y, var.equal=T)

More Related