plotGamma {bayesAB} | R Documentation |
Plot the PDF of the Gamma distribution.
plotGamma(shape, rate)
shape |
shape ( |
rate |
rate ( |
Note: We use the shape/rate parametrization of Gamma. See https://en.wikipedia.org/wiki/Gamma_distribution for details.
The PDF of Gamma(shape, rate).
The output can be treated like any ggplot2
object and modified accordingly.
plotGamma(1, 1)
plotGamma(2, 5)
## Not run: plotGamma(2, 5) + ggtitle('I hate the default title!')