plot_dist {beastt} | R Documentation |
Plot Distribution
Description
Plot Distribution
Usage
plot_dist(...)
Arguments
... |
Distributional object(s) to plot. When passing multiple objects naming them will change the labels in the plot, else they will use the distributional format |
Value
ggplot object that is the density of the provided distribution
Examples
library(distributional)
plot_dist(dist_normal(0, 1))
#Plotting Multiple
plot_dist(dist_normal(0, 1), dist_normal(10, 5))
plot_dist('Prior' = dist_normal(0, 1), 'Posterior' = dist_normal(10, 5))
[Package beastt version 0.0.1 Index]