コンテンツにスキップ

最頻値

出典: フリー百科事典『ウィキペディア(Wikipedia)』

: mode[1][2]

[3][4]


確率分布の最頻値

[編集]





使

標本の最頻値

[編集]

 [1, 3, 6, 6, 6, 6, 7, 7, 12, 12, 17] 6[1, 1, 2, 4, 4]  (: bimodal)2 (: multimodal)

 [0.935..., 1.211..., 2.430..., 3.668..., 3.874...] 1

MATLAB
X = sort(x);
indices   =  find(diff([X; realmax]) > 0); % indices where repeated values change
[modeL,i] =  max (diff([0; indices]));     % longest persistence length of repeated values
mode      =  X(indices(i));

このアルゴリズムでは、まず標本群を昇順にソートする必要がある。次いでソートされたリストの離散微分係数を計算し、その微分係数が正となるインデックス群 (indices) を求める(つまり、値が上がっている位置を求める)。次にそのインデックス列の離散微分係数を計算し、それが最大となっている位置を求める(つまり、同じ値が長く続いているほどインデックスの差が大きくなり、微分係数が大きくなる)。

平均値、中央値、最頻値の比較

[編集]
代表値の比較
種類 意味 結果
算術平均 総和をサンプルサイズで割ったもの (1+2+2+3+4+7+9) / 7 4
中央値 標本群を昇順に並べたとき中央に位置する値 1, 2, 2, 3, 4, 7, 9 3
最頻値 標本群で最も頻繁に出現する値 1, 2, 2, 3, 4, 7, 9 2

これらの値の意味

[編集]

1

1

一意性と定義性

[編集]

212 (pathological) []1

特性

[編集]



3 X aX+b 

調X  exp(X)  m exp(m) 



31  (2 ×  + )/33[5][6]

 2[7]

歪度の高い分布における例

[編集]



 X Y= exp(X)  Y Y

X  μ 0Y 1X  σ  X 0 X  Y調Y  exp(0) = 1 

X  σ = 0.2 Y4

 = 1.0202

 = 0.9608

31

X  σ = 5 Y 

 = 7.3891

 = 0.0183


脚注

[編集]
  1. ^ Butler, Gregory (2010). “Mode”. In Salkind, Neil. Encyclopedia of researchL design. Sage. pp. 140-142. ISBN 978-1-4129-6127-1 
  2. ^ JIS Z 8101-1 : 1999 統計 − 用語と記号 − 第1部:確率及び一般統計用語 1.11 最頻値, 日本規格協会, http://kikakurui.com/z8/Z8101-1-1999-01.html
  3. ^ 西岡康夫、数学チュートリアル やさしく語る 確率統計,1.3 代表値 p.5, オーム社, 2013, ISBN 9784274214073
  4. ^ 伏見康治確率論及統計論」第III章 記述統計量 13節 確率分布、統計分布 p.110 ISBN 9784874720127 http://ebsa.ism.ac.jp/ebooks/ebook/204
  5. ^ Relationship between the mean, median, mode, and standard deviation in a unimodal distribution”. 2012年7月20日時点のオリジナルよりアーカイブ。2012年7月20日閲覧。
  6. ^ Paul T. von Hippel. Mean, Median, and Skew: Correcting a Textbook Rule. J. of Statistics Education 13:2 (2005)
  7. ^ Maximum distance between the mode and the mean of a unimodal distribution

参考文献

[編集]

西  2013ISBN 9784274214073 

1942ISBN 9784874720127http://ebsa.ism.ac.jp/ebooks/ebook/204 

2007ISBN 9784000803090 

JIS Z 8101-1:1999     1:, , http://kikakurui.com/z8/Z8101-1-1999-01.html



関連項目

[編集]

外部リンク

[編集]