Learn R Programming

psborrow2 (version 0.0.4.0)

UniformPrior-class: UniformPrior Class

Description

A class for defining uniform priors to be translated to Stan code. Objects of class UniformPrior should not be created directly but by the constructor uniform_prior().

Arguments

Slots

stan_code

character. Stan implementation of the prior, with placeholders for uniform stan function parameters surrounded with {{ and }} to be replaced with glue::glue().

n_param

integer. Number of prior parameters (2).

constraint

character. Support of prior distribution, "<lower=alpha, upper=beta>".

alpha

numeric. Lower bound.

beta

numeric. Upper bound (>alpha).

See Also

Other prior classes: Prior-class, PriorBernoulli-class, PriorBeta-class, PriorCauchy-class, PriorExponential-class, PriorGamma-class, PriorHalfCauchy-class, PriorHalfNormal-class, PriorNormal-class, PriorPoisson-class