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

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

最佳答案

您可以执行

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

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

关于r - 如何从rstanarm对象提取stan代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53481697/

10-09 00:57