フリードマン検定     Last modified: Aug 25, 2015

例題

 「表 1 のようなデータがある。4 種の肥料間で収量に差があるか検定しなさい。」

表 1.フリードマン検定が対象とするデータ
肥料
  品種     $B_{1}$     $B_{2}$     $B_{3}$     $B_{4}$  
$A_{1}$ 9  17  12  16 
$A_{2}$ 1  21  16  11 
$A_{3}$ 7  19  6  9 


R による解析:

> friedman.test(matrix(c(9,17,12,16,1,21,16,11,7,19,6,9), ncol=4, byrow=TRUE))

	Friedman rank sum test

data:  matrix(c(9, 17, 12, 16, 1, 21, 16, 11, 7, 19, 6, 9), ncol = 4, byrow = TRUE) 
Friedman chi-squared = 7, df = 3, p-value = 0.0719


・ 手法の解説ページ
・ 直前のページへ戻る  ・ E-mail to Shigenobu AOKI