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.
我pnorm在 R 中使用标准正态分布。我想知道我可以在 Winbugs 中使用什么代码来执行此操作,因为我将使用贝叶斯概率。
pnorm
例如,我将 p = Phi(Xbeta) 计算为 pnorm(Xbeta)。
我的问题是如何在 Winbugs 中做到这一点。
帮助 --> 用户手册 --> 模型规范 --> 逻辑节点说你想要的是什么phi(Xbeta)。 虽然也许它对“标准正常 cdf”的描述不清楚?
phi(Xbeta)
“cdf”代表“累积密度函数”。
它还在那里说您可以使用probit(x) <- y而不是x <- phi(y).
probit(x) <- y
x <- phi(y)