plot.prior: Plot Prior Distribution

View source: R/plot_prior.R

plot.priorR Documentation

Plot Prior Distribution

Description

Plot the probability density function of a prior distribution.

Usage

## S3 method for class '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

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)

danheck/metaBMA documentation built on Feb. 10, 2024, 7:42 a.m.