draw_samples: Draw samples from a specification.

Description Usage Arguments Value See Also Examples

Description

Draw samples from a specification.

Usage

1
2
draw_samples(object, y, x = NULL, u = NULL, v = NULL,
  writeDir = tempdir(), ...)

Arguments

object

An object returned by specify, hmm, compile, draw_samples, fit or optimizing.

y

A numeric matrix with the observation sample. It must have as many rows as the time series length T and as many columns as the dimension of the observation vector R. If not a matrix, the function tries to cast the object to a T\times R matrix.

x

An optional numeric matrix with the covariates for the observation model. It must have as many rows as the time series length T and as many columns as the dimension of the covariate vector M. If not a matrix, the function tries to cast the object to a T\times M matrix. Useful for Hidden Markov Regression Model (also known as Markov-switching regressions).

u

An optional numeric matrix with the covariates for the transition model. It must have as many rows as the time series length T and as many columns as the dimension of the transition covariate vector P. If not a matrix, the function tries to cast the object to a T\times P matrix. Useful for Hidden Markov Models with time-varying transition probabilities.

v

An optional numeric matrix with the covariates for the initial distribution model. It must have as many rows as the number of hidden states K and as many columns as the dimension of the initial covariate vector Q. If not a matrix, the function tries to cast the object to a K\times Q matrix.

writeDir

An optional character string with the path where the Stan file should be written. Useful to inspect and modify the Stan code manually. It defaults to a temporary directory.

...

Arguments to be passed to rstan's sampling.

Value

An object of S4 class stanfit with some additional attributes (the dataset data, the name of the Stan code file filename, and the Specification object spec). This object is completely compatible with all other functions.

See Also

See rstan's sampling for further details on tunning the MCMC algorithm.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
## Not run: 
y <- rnorm(1000) # Assume this is your dataset

mySpec   <- hmm(
  K = 2, R = 1,
  observation = Gaussian(
    mu    = Gaussian(0, 10),
    sigma = Student(
      mu = 0, sigma = 10, nu = 1, bounds = list(0, NULL)
    )
  ),
  initial     = Dirichlet(alpha = c(1, 1)),
  transition  = Dirichlet(alpha = c(1, 1)),
  name = "Univariate Gaussian Hidden Markov Model"
)

myModel <- compile(mySpec)

myFit   <- draw_samples(myModel, y = y, chains = 2, iter = 500)

## End(Not run)

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