R-INLA
模型超参数具有似乎用于在不同参数化之间进行转换的功能to.theta
。from.theta
使用这些转换函数会很方便,但如何做到这一点呢?
示例ar1
从ar1
文档(http://www.math.ntnu.no/inla/r-inla.org/doc/latent/ar1.pdf):
参数 rho 表示为 theta_2 = log((1 + rho)/(1 - rho))
再往下hyper
,theta2
我们有to.theta 'function(x) log((1+x)/(1-x))'
。如果我们可以使用它在 rho 和 theta_2 之间进行转换,那就太好了。
让我们尝试使用一个示例
library(INLA)
# Example from ar1 documentation (http://www.math.ntnu.no/inla/r-inla.org/doc/latent/ar1.pdf)
#simulate data
n = 100
rho = 0.8
prec = 10
## note that the marginal precision would be
marg.prec = prec * (1-rho^2)
E=sample(c(5,4,10,12),size=n,replace=T)
eta = as.vector(arima.sim(list(order = c(1,0,0), ar = rho), n = n,sd=sqrt(1/prec)))
y=rpois(n,E*exp(eta))
data = list(y=y, z=1:n, E=E)
## fit the model
formula = y~f(z,model="ar1")
result = inla(formula,family="poisson", data = data, E=E)
运行良好。我们可以这样使用to.theta
吗?
formula.to.theta = y~f(z,model="ar1",
hyper = list(rho = list(initial = to.theta(0.25))))
result = inla(formula.to.theta,family="poisson", data = data, E=E)
# Error in to.theta(0.25) : could not find function "to.theta"
所以我们不能这样使用它。有没有另一种方法来指定formula.to.theta
它会起作用?