フィルターのクリア

How to get the number of bin and bin edges from chi2gof test

1 回表示 (過去 30 日間)
John
John 2012 年 2 月 7 日
Hi there,
I am fitting a chi squared distribution to data, could some tell me what is the correct syntax to return the number of bins and bin boundaries?
Many thanks
John

回答 (1 件)

Vieniava
Vieniava 2012 年 2 月 7 日
Use this kind
[h,p,stats] = chi2gof(...)
Then:
NumberOfBins = numel(stats.O);
And boundaries of i-th bin are:
BoundariesIth = [ stats.edges(i) stats.edges(i+1) ];
  1 件のコメント
John
John 2012 年 2 月 7 日
Hello,
Thank you - is there anyway to find the optimum number of bins that returns the lowest chi squared statistic? or is it trial and error?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeHypothesis Tests についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by