我有一个stanfit
调用fit
返回的对象rstan::stan(...)
来推断参数theta
。我现在可以theta
使用 eg进行分析rstan::summary(fit, pars="theta")
。
后来我意识到我对推断 的平方更感兴趣theta
。我应该transformed parameters
在 STAN 模型中包含一个块以theta_squared
作为参数包含在输出中。
是否可以将转换后的参数添加theta_squared <- theta^2
到现有stanfit
对象中,就好像它是在一个transformed parameters
块中计算的一样?