TransitionFixed: Fixed transition probability matrix

Description Usage Arguments Value References See Also Examples

Description

It can be used to specify either a prior distribution for a model parameter or a likelihood function for an observation model.

Usage

1
2
3
TransitionFixed(A = NULL, ordered = NULL, equal = NULL,
  bounds = list(NULL, NULL), trunc = list(NULL, NULL), k = NULL,
  r = NULL, param = NULL)

Arguments

A

A numeric matrix of size KxK with rows suming to one.

ordered

(optional) A logical setting an increasing ordering constraint on any univariate parameter and any unconstrained parameter vector. Ordered simplices (e.g. Categorical, Multinomial, Dirichlet) are currently not implemented. Most useful for location parameters to break symmetries and fix label switching as shown in Betancourt (2017). It defaults to unordered parameters.

equal

(optional) A logical setting whether the parameter takes the same value in every hidden state, i.e. the parameter is shared across states. It defaults to unequal parameters.

bounds

(optional) A list with two elements specifying the lower and upper bound for the parameter space. Use either a fixed value for a finite bound or NULL for no bounds. It defaults to an unbounded parameter space.

trunc

(optional) A list with two elements specifying the lower and upper bound for the domain of the density function. Use either a fixed value for a finite bound or NULL for no truncation. It defaults to an unbounded domain.

k

(optional) The number of the hidden state for which this density should be used. This argument is mostly for internal use: you should not use it unless you are acquainted with the internals of this software.

r

(optional) The dimension of the observation vector dimension for which this density should be used. This argument is mostly for internal use: you should not use it unless you are acquainted with the internals of this software.

param

(optional) The name of the parameter. This argument is mostly for internal use: you should not use it unless you are acquainted with the internals of this software.

Value

A Density object.

References

Betancourt, Michael (2017) Identifying Bayesian Mixture Models Stan Case Studies Volume 4. Link.

See Also

Other Density: Bernoulli, Beta, Binomial, Categorical, Cauchy, CholeskyLKJCor, Density, Dirichlet, Exponential, GammaDensity, Gaussian, ImproperUniform, InitialFixed, InitialSoftmax, InverseWishart, MVGaussianCholeskyCor, MVGaussian, MVStudent, Multinomial, NegativeBinomialLocation, NegativeBinomial, Poisson, RegBernoulliLogit, RegBinomialLogit, RegBinomialProbit, RegCategoricalSoftmax, RegGaussian, Student, TransitionSoftmax, Wishart

Examples

1
2
3
TransitionFixed(
  A = matrix(c(0.2, 0.9, 0.8, 0.1), 2, 2)
)

luisdamiano/BayesHMM documentation built on May 20, 2019, 2:59 p.m.