如何从rstanarm对象提取stan代码

时间:2018-11-26 13:01:08

标签: r bayesian mcmc stan rstanarm

是否有可能提取用于rstanarm中MCMC采样的stan代码?

我想将自己的模型参数设置和先前的选择与rstanarm中使用的参数进行比较。

1 个答案:

答案 0 :(得分:3)

您可以执行

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

查看Stan代码或在GitHub上查看。但是,由于#include语句和受支持的众多选项,因此它并非旨在供人阅读,也不是特别可读。