metaBMA (version 0.6.1)

plot.prior: Plot Prior Distribution

Description

Plot the probability density function of a prior distribution.

Usage

# S3 method for prior
plot(x, from, to, ...)

Arguments

x

prior probability density function defined via prior.

from

lower boundary

to

upper boundary

...

further arguments passed to plot

Examples

Run this code
# NOT RUN {
p1 <- prior("t", c(location=0, scale=0.707, nu=1), 0, 3)
plot(p1, 0, 2)

# define custom prior pdf up to a constant:
p2 <- prior("custom", function(x) x^.5, 0, .5)
plot(p2)
# }

Run the code above in your browser using DataCamp Workspace