本文介绍了在Rmarkdown HTML输出中禁止来自RStan的运行消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下是我的r代码.
```{r message=FALSE, warning=FALSE, cache=0,eval=TRUE, error=FALSE}
stan_m1 <- rethinking::map2stan(
alist(
y ~ dbinom(n, p),
logit(p) <- alpha + bP*P + bA*A + bV*V,
alpha ~ dnorm(0, 10),
bP ~ dnorm(0, 5),
bA ~ dnorm(0, 5),
bV ~ dnorm(0, 5)
),
data = d1, chains=2 , iter=2500 , warmup=500, debug=FALSE ,
verbose=FALSE,refresh=-1
)
当我knit
我的rmarkdown
文件作为html输出时,我得到以下输出.有什么办法可以关闭这些消息?
When I knit
my rmarkdown
file as html output, I am getting following output. Is there any way to turn off these messages?
推荐答案
在块标题中放入results="hide"
.
而且,在 rstan 2.18.2或更高版本中,您可以指定refresh = 0
参数来完成相同的操作.
And, in rstan 2.18.2 or later you can specify the refresh = 0
argument to accomplish the same thing.
这篇关于在Rmarkdown HTML输出中禁止来自RStan的运行消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!