zeros in data for gamma distribution

5 ビュー (過去 30 日間)
desert_scientist90
desert_scientist90 2019 年 10 月 2 日
コメント済み: desert_scientist90 2019 年 10 月 2 日
Hi, I am working with a large weather data set. I am trying to create a histogram with a gamma distrubution. This is not possible because I have values equal to 0 on my set. Is there any way I can delete the observations that = 0 by coding?
Thanks in advance for your help
number_of_bins = 10;
histfit(rain1, 10,'gamma');
xlabel('mm');
title('station 1 jja');
Warning: Zeros in data -- returning method of moments estimates.
> In gamfit (line 136)
In prob/GammaDistribution/fit (line 147)
In fitdist>localfit (line 245)
In fitdist (line 192)
In histfit (line 62)
In hw24 (line 10)

採用された回答

Jeff Miller
Jeff Miller 2019 年 10 月 2 日
rain1positive = rain1(rain1>0);
  1 件のコメント
desert_scientist90
desert_scientist90 2019 年 10 月 2 日
Thanks!

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by