How to extract stan code from rstanarm object

1.6k Views Asked by At

Is there a possibility to extract the stan code used for the MCMC sampling in rstanarm?

I would like to compare my own parametrisation of a model and prior choices to the one used in rstanarm.

1

There are 1 best solutions below

1
On BEST ANSWER

You can execute

library(rstanarm)
example(example_model)
rstan::get_stanmodel(example_model$stanfit)

to see the Stan code or look at it on GitHub. However, it was not intended to be read by humans and is not particularly readable due to the #include statements and the large number of options supported.