Missing Values Sampler (MISS)

A sampler to simulate missing output values from their likelihood distributions.

Sampler Constructor

MISS(params::Vector{Symbol})

Construct a Sampler object to sampling missing output values. The constructor should only be used to sample stochastic nodes upon which no other stochastic node depends. So-called ‘output nodes’ can be identified with the keys() function. Moreover, when the MISS constructor is included in a vector of Sampler objects to define a sampling scheme, it should be positioned at the beginning of the vector. This ensures that missing output values are updated before any other samplers are executed.

Arguments

  • params : stochastic nodes that contain missing values (NaN) to be updated with the sampler.

Value

Returns a Sampler type object.

Example

See the Bones and Mice examples.