Hi there,
I wonder if the following are equivalent?
- gamma_p(r, x*mu)
- gamma_cdf(x, r, mu)
I am trying to compute the CDF of x which follows gamma(r, mu).
Thank you!
Hi there,
I wonder if the following are equivalent?
I am trying to compute the CDF of x which follows gamma(r, mu).
Thank you!
In Stan, the gamma distribution is parameterized in terms of the shape and rate, so it would be
gamma_cdf(x, r, mu / r);
Thanks so much for your reply. Just to confirm, if gamma is parameterized as shape and rate in stan, wouldn’t gamma_cdf(x, r, mu/r) have a mean of r/ (mu/r)= r^2/mu?
Uh, meant r / mu.