필터 지우기
필터 지우기

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 CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by