Construct a Stan model
Construct an instance of S4 class stanmodel
from a model
specified in Stan's modeling language. A stanmodel
object
can then be used to draw samples from the model. The Stan program
(the model expressed in the Stan modeling language) is first translated to
C++ code and then the C++ code for the model plus other auxiliary
code is compiled into a dynamic shared object (DSO) and then loaded.
The loaded DSO for the model can be executed to draw samples, allowing
inference to be performed for the model and data.
stan_model(file, model_name = "anon_model", model_code = "", stanc_ret = NULL, boost_lib = NULL, eigen_lib = NULL, save_dso = TRUE, verbose = FALSE, auto_write = rstan_options("auto_write"), obfuscate_model_name = TRUE, allow_undefined = FALSE, includes = NULL, isystem = c(if (!missing(file)) dirname(file), getwd()))
file |
A character string or a connection that R supports specifying the Stan model specification in Stan's modeling language. |
model_name |
A character string naming the model; defaults
to |
model_code |
Either a character string containing the model
specification or the name of a character string object in the workspace.
This is an alternative to specifying the model via the |
stanc_ret |
A named list returned from a previous call to
the |
boost_lib |
The path to a version of the Boost C++ library to use instead of the one in the BH package. |
eigen_lib |
The path to a version of the Eigen C++ library to use instead of the one in the RcppEigen package. |
save_dso |
Logical, defaulting to |
verbose |
Logical, defaulting to |
auto_write |
Logical, defaulting to the value of
|
obfuscate_model_name |
A logical scalar that is |
allow_undefined |
A logical scalar that is |
includes |
If not |
isystem |
A character vector naming a path to look for
file paths in |
If a previously compiled stanmodel
exists on the hard drive, its validity
is checked and then returned without recompiling. The most common form of
invalidity seems to be Stan code that ends with a }
rather than a blank
line, which causes the hash checker to think that the current model is different
than the one saved on the hard drive. To avoid reading previously
compiled stanmodel
s from the hard drive, supply the stanc_ret
argument rather than the file
or model_code
arguments.
There are three ways to specify the model's code for stan_model
:
parameter model_code
: a character string containing the
Stan model specification,
parameter file
: a file name (or a connection) from
which to read the Stan model specification, or
parameter stanc_ret
: a list returned by stanc
to be reused.
An instance of S4 class stanmodel
that can be
passed to the sampling
, optimizing
, and
vb
functions.
The Stan Development Team Stan Modeling Language User's Guide and Reference Manual. http://mc-stan.org/.
stanmodel
for details on the class.
sampling
, optimizing
, and vb
,
which take a stanmodel
object as input, for estimating the model
parameters.
More details on Stan, including the full user's guide and reference manual, can be found at http://mc-stan.org/.
## Not run: stancode <- 'data {real y_mean;} parameters {real y;} model {y ~ normal(y_mean,1);}' mod <- stan_model(model_code = stancode, verbose = TRUE) fit <- sampling(mod, data = list(y_mean = 0)) fit2 <- sampling(mod, data = list(y_mean = 5)) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.