Plot the PDF of the Beta distribution.
plotBeta(alpha, beta)
alpha | \(\alpha\) parameter of the Beta distribution. |
---|---|
beta | \(\beta\) parameter of the Beta distribution. |
The PDF of Beta(\(\alpha\), \(\beta\)).
The output can be treated like any ggplot2
object and modified accordingly.
plotBeta(1, 1)plotBeta(2, 5)if (FALSE) plotBeta(2, 5) + ggtitle('I hate the default title!')