log_gamma {bayesCureRateModel} | R Documentation |
PDF and CDF of the Gamma distribution
Description
Computes the pdf and cdf of the Gamma distribution.
Usage
log_gamma(y, a1, a2, c_under = 1e-09)
Arguments
y |
observed data |
a1 |
shape parameter |
a2 |
rate parameter |
c_under |
A small positive value corresponding to the underflow threshold, e.g. c_under = 1e-9. |
Value
A list containing the following entries
log_f |
natural logarithm of the pdf, evaluated at each datapoint. |
log_F |
natural logarithm of the CDF, evaluated at each datapoint. |
Author(s)
Panagiotis Papastamoulis
See Also
Examples
log_gamma(y = 1:10, a1 = 1, a2 = 1, c_under = 1e-9)
[Package bayesCureRateModel version 1.1 Index]