posterior {adoptr} | R Documentation |
Return posterior distribution given observing stage-one outcome.
posterior(dist, prior, x1, n1, ...) ## S4 method for signature 'DataDistribution,PointMassPrior,numeric' posterior(dist, prior, x1, n1, ...) ## S4 method for signature 'DataDistribution,ContinuousPrior,numeric' posterior(dist, prior, x1, n1, tighten_support = FALSE, check_normalization = FALSE, ...)
dist |
a univariate |
prior |
a |
x1 |
stage-one test statistic |
n1 |
stage-one sample size |
... |
further optional arguments |
tighten_support |
logical indicating if the support should be tightened |
check_normalization |
logical indicating if it should be checked
that |
Object of class Prior
posterior(Normal(), PointMassPrior(0, 1), 2, 20) tmp <- ContinuousPrior(function(x) dunif(x, .2, .4), c(.2, .4)) posterior(Normal(), tmp, 2, 20)