New in Wolfram
Mathematica
8: 母数推定と検定
◄
previous
|
next
►
コアとなるアルゴリズム
母数推定と適合度の検定
フィットした分布の確率密度関数とデータのヒストグラムとを比較し,適合度の統計量の表を生成する.
In[1]:=
X
vals = RandomVariate[ChiSquareDistribution[20], 1000]; h = DistributionFitTest[vals, ChiSquareDistribution[n], "HypothesisTestData"]; Row[{Show[Histogram[vals, {1}, "PDF", ChartStyle -> "BeachColors"], Plot[PDF[h["FittedDistribution"], x], {x, 0, 50}, PlotStyle -> {{Blend[{Blue, Black}], Thick}}]], h[{"TestDataTable", All}]}]
Out[1]=