EBayes sample types

EBayes.NormalSampleType
NormalSample(Z,σ)

A observed sample $Z$ drawn from a Normal distribution with known variance $\sigma^2 > 0$.

\[Z \sim \mathcal{N}(\mu, \sigma^2)\]

$\mu$ is assumed unknown. The type above is used when the sample $Z$ is to be used for estimation or inference of $\mu$.

NormalSample(0.5, 1.0)          #Z=0.5, σ=1
source