Plot the PDF of the Log Normal distribution.

plotLogNormal(mu, sigma)

Arguments

mu

\(\mu\) parameter of the Log Normal distribution.

sigma

\(\sigma\) parameter of the Log Normal distribution.

Value

The PDF of Log Normal(\(\mu\), \(\sigma^2\)).

Note

The output can be treated like any ggplot2 object and modified accordingly.

Examples

plotLogNormal(1, 1)
plotLogNormal(2, .5)
if (FALSE) plotLogNormal(2, .5) + ggtitle('I hate the default title!')