ContinuousPrior-class {adoptr} | R Documentation |
ContinuousPrior
is a sub-class of Prior
implementing
a generic representation of continuous prior distributions over a compact
interval on the real line.
ContinuousPrior(pdf, support, tighten_support = FALSE, check_normalization = TRUE) ## S4 method for signature 'ContinuousPrior' show(object)
pdf |
vectorized univariate PDF function |
support |
numeric vector of length two with the bounds of the compact interval on which the pdf is positive. |
tighten_support |
logical indicating if the support should be tightened |
check_normalization |
logical indicating if it should be checked
that |
object |
object of class |
pdf
cf. parameter 'pdf'
support
cf. parameter 'support'
Discrete priors are supported via PointMassPrior
ContinuousPrior(function(x) 2*x, c(0, 1))