Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个代码
out <- bugs(data, inits=inits,...)
它的输出的一部分是
mean sd 2.5% 25% 50% beta1 0.0 0.0 0.0 0.0 0.0 beta2 0.1 0.0 0.0 0.1 0.1
我想知道如何使用测试版。例如,我如何计算 beta1*10。我试过10*out$beta1了,但没有用。
10*out$beta1
函数bugs()产生列表列表。参数的估计平均值位于名为 的子列表中mean。您可以按功能检查输出的整个结构str(out)。
bugs()
mean
str(out)
out$mean$beta1 out$mean$beta2