Fitting general pareto distribution to histogram

I am trying to get an understanding of how the example is done at this link: http://www.mathworks.com/help/stats/generalized-extreme-value-distribution.html Can someone explain why the gppdf is being multiplied by .5. It makes sense that you would multiply the gppdf by the number of excesses in order to get a number instead of a probability so that it fits to the histogram, but why are they are multiplying by .5 in the last two lines?
rng default % For reproducibility t = trnd(5,5000,1); y = t(t > 2) - 2; paramEsts = gpfit(y) hist(y+2,2.25:.5:11.75); xgrid = linspace(2,12,1000); line(xgrid,.5*length(y)*... gppdf(xgrid,paramEsts(1),paramEsts(2),2));

답변 (1개)

Brendan Hamm
Brendan Hamm 2015년 8월 11일

1 개 추천

The 0.5 has to do with the bin width. So the area under the curve of the pdf is equal to one and needs to equal the area under the curve of the histogram, which is binWidth*numberOfObservations.

카테고리

도움말 센터File Exchange에서 Histograms에 대해 자세히 알아보기

질문:

2015년 8월 11일

댓글:

2015년 8월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by