This package provides the toolchain to estimate the parameters of the GynCycle model.
Its code mainly revolves around the three main types:
Configwhich stores the bayesian model configuration, i.e. the patient data, measurement error, priors, ... as well as the MCMC proposal density and the thinning.Samplingwhich is obtained by sampling from a config viasample(::Config, iters)containing the sampled points, the current sampler state, as well as a reference to its initial config.WeightedChainwhich can be constructed from multiple samplings viaWeightedChain(::Vector{Sampling})representing the average/merged chain and is used for further prior estimation steps, for example the EM-iteration:emiteration!(::WeightedChain)