Fitting general pareto distribution to histogram
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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));
0 Commenti
Risposte (1)
Brendan Hamm
il 11 Ago 2015
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.
Vedere anche
Categorie
Scopri di più su Generalized Extreme Value Distribution in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!