Run the model via cmdstanr, selecting the CmdStanModel method based the model type:

# S3 method for class 'bbi_stan_model'
submit_model(
  .mod,
  .bbi_args = NULL,
  .mode = c("local"),
  ...,
  .overwrite = FALSE
)

# S3 method for class 'bbi_stan_gq_model'
submit_model(
  .mod,
  .bbi_args = NULL,
  .mode = c("local"),
  ...,
  .overwrite = FALSE
)

Arguments

.mod

The model object to submit.

.bbi_args

Unused argument (present for compatibility with bbr::submit_model()).

.mode

Mode of model submission. Stan models currently only support local execution.

...

Additional arguments (ignored for all Stan models).

.overwrite

Whether to overwrite an existing output directory. Note that, unlike the submission method for regular bbi_nonmem_model objects, this method does not inspect .bbi_args or bbi.yaml when the value is NULL; any value other than TRUE is treated the same as FALSE.

See also

bbr_stan for a high-level description of how Stan models are structured