- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究使用组级预测变量拟合多级逻辑回归模型。我通过 R 使用 JAGS。当我用 runjags
和 R2Jags
包拟合模型时,我得到了不同的行为。
我已尝试编写一个可重现的示例来说明该问题。下面,我模拟二项式模型的数据,将数据索引为 8 个图和 2 个 block ,然后拟合多级逻辑回归以恢复成功概率(b1
和 b2
) 在下面的代码中。滚动到底部以查看两次拟合的摘要。
我的问题是:
# -------------------------------------------------------------------
# Loading required packages
# -------------------------------------------------------------------
library(rjags)
library(R2jags)
library(MCMCvis)
包版本信息:
jags.version()
[1] ‘4.3.0’
R2jags_0.5-7 MCMCvis_0.13.5 rjags_4-10
# -------------------------------------------------------------------
# Simulate data
# -------------------------------------------------------------------
set.seed(10)
N.plots = 8
N.blocks = 2
trials=400
n = rep(100,trials)
N=length(n)
plotReps=N/N.plots
blockReps=N/N.blocks
# Block 1
b1<-rep(c(.25,.75,.9,.1),each=plotReps)-.05
# Block 2
b2<-rep(c(.25,.75,.9,.1),each=plotReps)+.05
y = rbinom(trials, 100, p = c(b1,b2))
# vectors indexing plots and blocks
plot = rep(1:8,each=plotReps)
block = rep(1:2,each=blockReps)
# pass data to list for JAGS
data = list(
y = y,
n = n,
N = length(n),
plot = plot,
block= block,
N.plots = N.plots,
N.blocks = N.blocks
)
# -------------------------------------------------------------------
# Code for JAGS model
# -------------------------------------------------------------------
modelString <- "model {
## Priors
# hyperpriors
mu.alpha ~ dnorm(0, 0.0001)
sigma.plot ~ dunif(0,100)
tau.plot <- 1 / sigma.plot^2
sigma.block ~ dunif(0,100)
tau.block <- 1 / sigma.block^2
# priors
for(i in 1:N.plots){
eps.plot[i]~dnorm(0,tau.plot)
}
for(i in 1:N.blocks){
eps.block[i]~dnorm(0,tau.block)
}
# Likelihood
for(i in 1:N){
logit(p[i]) <- mu.alpha + eps.plot[plot[i]] + eps.block[block[i]]
y[i] ~ dbin(p[i], n[i])
}
}"
# -------------------------------------------------------------------
# Initial values
# -------------------------------------------------------------------
# set inits for rjags
inits = list(list(mu.alpha = 0,sigma.plot=2,sigma.block=2),
list(mu.alpha = 0,sigma.plot=2,sigma.block=2),
list(mu.alpha = 0,sigma.plot=2,sigma.block=2))
# set inits function for R2jags
initsFun<-function(){list(
mu.alpha=0,
sigma.plot=2,
sigma.block=2
)}
# -------------------------------------------------------------------
# Set JAGS parameters and random seed
# -------------------------------------------------------------------
# scalars that specify the
# number of iterations in the chain for adaptation
# number of iterations for burn-in
# number of samples in the final chain
n.adapt = 500
n.update = 5000
n.iterations = 1000
n.thin = 1
parsToMonitor = c("mu.alpha","sigma.plot","sigma.block","eps.plot","eps.block")
# -------------------------------------------------------------------
# Call to JAGS via rjags
# -------------------------------------------------------------------
set.seed(2)
# tuning (n.adapt)
jm = jags.model(textConnection(modelString), data = data, inits = inits,
n.chains = length(inits), n.adapt = n.adapt)
# burn-in (n.update)
update(jm, n.iterations = n.update)
# chain (n.iter)
samples.rjags = coda.samples(jm, variable.names = c(parsToMonitor), n.iter = n.iterations, thin = n.thin)
# -------------------------------------------------------------------
# Call to JAGS via R2jags
# -------------------------------------------------------------------
set.seed(2)
samples.R2jags <-jags(data=data,inits=initsFun,parameters.to.save=parsToMonitor,model.file=textConnection(modelString),
n.thin=n.thin,n.chains=length(inits),n.burnin=n.adapt,n.iter=n.iterations,DIC=T)
# -------------------------------------------------------------------
# Summarize posteriors using MCMCvis
# -------------------------------------------------------------------
sum.rjags <- MCMCvis::MCMCsummary(samples.rjags,params=c("mu.alpha","eps.plot","sigma.plot","sigma.block","eps.block"))
sum.rjags
sum.R2jags2 <- MCMCvis::MCMCsummary(samples.R2jags,params=c("mu.alpha","eps.plot","sigma.plot","sigma.block","eps.block"))
sum.R2jags2
这是 rjags 拟合的输出:
mean sd 2.5% 50% 97.5% Rhat n.eff
mu.alpha 0.07858079 21.2186737 -48.99286669 -0.04046538 45.16440893 1.11 4063
eps.plot[1] -1.77570813 0.8605892 -3.45736942 -1.77762035 -0.02258692 1.00 2857
eps.plot[2] -0.37359614 0.8614370 -2.07913650 -0.37581522 1.36611635 1.00 2846
eps.plot[3] 0.43387001 0.8612820 -1.24273657 0.42332033 2.20253810 1.00 2833
eps.plot[4] 1.31279883 0.8615840 -0.38750596 1.31179143 3.06307745 1.00 2673
eps.plot[5] -1.34317034 0.8749558 -3.06843578 -1.34747145 0.44451006 1.00 2664
eps.plot[6] -0.40064738 0.8749104 -2.13233876 -0.41530587 1.37910977 1.00 2677
eps.plot[7] 0.36515253 0.8738092 -1.35364716 0.35784379 2.15597251 1.00 2692
eps.plot[8] 1.71826293 0.8765952 -0.01057452 1.70627507 3.50314147 1.00 2650
sigma.plot 1.67540914 0.6244529 0.88895789 1.53080631 3.27418094 1.01 741
sigma.block 19.54287007 26.1348353 0.14556791 6.68959552 93.21927035 1.22 94
eps.block[1] -0.55924545 21.2126905 -46.34099332 -0.24261169 48.81435107 1.11 4009
eps.block[2] 0.35658731 21.2177540 -44.65998407 0.25801739 49.31921639 1.11 4457
这是 R2jags 拟合的输出:
mean sd 2.5% 50% 97.5% Rhat n.eff
mu.alpha -0.09358847 19.9972601 -45.81215297 -0.03905447 47.32288503 1.04 1785
eps.plot[1] -1.70448172 0.8954054 -3.41749845 -1.70817566 0.08187877 1.00 1141
eps.plot[2] -0.30070570 0.8940527 -2.01982416 -0.30458798 1.46954632 1.00 1125
eps.plot[3] 0.50295713 0.8932038 -1.20985348 0.50458106 2.29271214 1.01 1156
eps.plot[4] 1.37862742 0.8950657 -0.34965321 1.37627777 3.19545411 1.01 1142
eps.plot[5] -1.40421696 0.8496819 -3.10743244 -1.41880218 0.25843323 1.01 1400
eps.plot[6] -0.45810643 0.8504694 -2.16755579 -0.47087931 1.20827684 1.01 1406
eps.plot[7] 0.30319019 0.8492508 -1.39045509 0.28668886 1.96325582 1.01 1500
eps.plot[8] 1.65474420 0.8500635 -0.03632306 1.63399429 3.29585024 1.01 1395
sigma.plot 1.66375532 0.6681285 0.88231891 1.49564854 3.45544415 1.04 304
sigma.block 20.64694333 23.0418085 0.41071589 11.10308188 85.56459886 1.09 78
eps.block[1] -0.45810120 19.9981027 -46.85060339 -0.33090743 46.27709625 1.04 1795
eps.block[2] 0.58896195 19.9552211 -46.39310677 0.28183123 46.57874408 1.04 1769
这是 2 次拟合的 mu.alpha 轨迹图。首先,从 rjags 适合:
其次,从 R2jags 拟合:
最佳答案
虽然部分问题与 mu.alpha
缺乏收敛性有关,但另一个问题是两个包如何确定从后验分布中收集的样本数量。此外,jags.model
之后的 update
调用应该是:
更新(jm,n.iter = n.update)
代替
更新(jm,n.iterations = n.update)
对于 rjags
,您可以很容易地指定适应步骤、更新步骤和迭代步骤的数量。查看 samples.rjags
很明显,每个链的后验长度为 n.iterations
,总共(在此示例中)3000 个样本( n.iterations
* n.chains
).相反,R2jags::jags
将对后验样本进行采样,次数等于 n.iter
参数减去 n.burnin
参数。因此,正如您指定的那样,您 1) 没有将 n.update
步骤包含在 R2jags::jags
中,并且 2) 仅对后验样本进行了总共 1500 次采样(每个链仅保留 500 个样本),而 rjags
则保留 3000 次。
如果您想进行类似的老化并采样相同次数,您可以改为运行:
samples.R2jags <-jags(
data=data,
inits=inits,
parameters.to.save=parsToMonitor,
model.file=textConnection(modelString),
n.thin=n.thin,
n.chains=length(inits),
n.burnin=n.adapt + n.update ,
n.iter=n.iterations +n.update + n.adapt,
DIC=T
)
最后,R2jags
默认加载了glm
模块,而rjags
则没有。这可能会导致一些差异,因为使用的采样器可能不同(至少在这种情况下,因为您正在安装 glm)。您可以在调用 jags.model
之前使用 rjags::load.module('glm')
调用加载 glm 模块。
虽然这与问题本身无关,但我会避免在每个循环的模型内的 for 循环中使用 i
(如果迭代次数因人而异,请使用不同的字母)循环):
modelString <- "model {
## Priors
# hyperpriors
mu.alpha ~ dnorm(0, 0.0001)
sigma.plot ~ dunif(0,100)
tau.plot <- 1 / sigma.plot^2
sigma.block ~ dunif(0,100)
tau.block <- 1 / sigma.block^2
# priors
for(i in 1:N.plots){
eps.plot[i]~dnorm(0,tau.plot)
}
for(j in 1:N.blocks){
eps.block[j]~dnorm(0,tau.block)
}
# Likelihood
for(k in 1:N){
logit(p[k]) <- mu.alpha + eps.plot[plot[k]] + eps.block[block[k]]
y[k] ~ dbin(p[k], n[k])
}
}"
关于r - 为什么拟合 rjags 和 R2Jags 的模型输出不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60305150/
我正在从 Stata 迁移到 R(plm 包),以便进行面板模型计量经济学。在 Stata 中,面板模型(例如随机效应)通常报告组内、组间和整体 R 平方。 I have found plm 随机效应
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
我想要求用户输入整数值列表。用户可以输入单个值或一组多个值,如 1 2 3(spcae 或逗号分隔)然后使用输入的数据进行进一步计算。 我正在使用下面的代码 EXP <- as.integer(rea
当 R 使用分类变量执行回归时,它实际上是虚拟编码。也就是说,省略了一个级别作为基础或引用,并且回归公式包括所有其他级别的虚拟变量。但是,R 选择了哪一个作为引用,以及我如何影响这个选择? 具有四个级
这个问题基本上是我之前问过的问题的延伸:How to only print (adjusted) R-squared of regression model? 我想建立一个线性回归模型来预测具有 15
我在一台安装了多个软件包的 Linux 计算机上安装了 R。现在我正在另一台 Linux 计算机上设置 R。从他们的存储库安装 R 很容易,但我将不得不使用 安装许多包 install.package
我正在阅读 Hadley 的高级 R 编程,当它讨论字符的内存大小时,它说: R has a global string pool. This means that each unique strin
我们可以将 Shiny 代码写在两个单独的文件中,"ui.R"和 "server.R" , 或者我们可以将两个模块写入一个文件 "app.R"并调用函数shinyApp() 这两种方法中的任何一种在性
我正在使用 R 通过 RGP 包进行遗传编程。环境创造了解决问题的功能。我想将这些函数保存在它们自己的 .R 源文件中。我这辈子都想不通怎么办。我尝试过的一种方法是: bf_str = print(b
假设我创建了一个函数“function.r”,在编辑该函数后我必须通过 source('function.r') 重新加载到我的全局环境中。无论如何,每次我进行编辑时,我是否可以避免将其重新加载到我的
例如,test.R 是一个单行文件: $ cat test.R # print('Hello, world!') 我们可以通过Rscript test.R 或R CMD BATCH test.R 来
我知道我可以使用 Rmd 来构建包插图,但想知道是否可以更具体地使用 R Notebooks 来制作包插图。如果是这样,我需要将 R Notebooks 编写为包小插图有什么不同吗?我正在使用最新版本
我正在考虑使用 R 包的共享库进行 R 的站点安装。 多台计算机将访问该库,以便每个人共享相同的设置。 问题是我注意到有时您无法更新包,因为另一个 R 实例正在锁定库。我不能要求每个人都关闭它的 R
我知道如何从命令行启动 R 并执行表达式(例如, R -e 'print("hello")' )或从文件中获取输入(例如, R -f filename.r )。但是,在这两种情况下,R 都会运行文件中
我正在尝试使我当前的项目可重现,因此我正在创建一个主文档(最终是一个 .rmd 文件),用于调用和执行其他几个文档。这样我自己和其他调查员只需要打开和运行一个文件。 当前设置分为三层:主文件、2 个读
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
我的 R 包中有以下描述文件 Package: blah Title: What the Package Does (one line, title case) Version: 0.0.0.9000
有没有办法更有效地编写以下语句?accel 是一个数据框。 accel[[2]]<- accel[[2]]-weighted.mean(accel[[2]]) accel[[3]]<- accel[[
例如,在尝试安装 R 包时 curl作为 usethis 的依赖项: * installing *source* package ‘curl’ ... ** package ‘curl’ succes
我想将一些软件作为一个包共享,但我的一些脚本似乎并不能很自然地作为函数运行。例如,考虑以下代码块,其中“raw.df”是一个包含离散和连续类型变量的数据框。函数“count.unique”和“squa
我是一名优秀的程序员,十分优秀!