gpt4 book ai didi

r - 我如何在 R 中沉默 confint

转载 作者:行者123 更新时间:2023-12-05 08:55:51 28 4
gpt4 key购买 nike

我在 R 笔记本中循环执行许多分析,并在每次迭代中捕获置信区间。每次,confint 都会发出“等待分析完成...”作为笔记本中显示的输出。我可以抑制这个吗?

以下代码发出我希望在控制台和 RStudio 中避免的消息。如果重要的话,我只关心 RStudio 中笔记本的输出。

y = c(1,2,3,4,5,6,7,8,9,0)
x = c(2,4,6,8,2,4,6,8,2,4)
fit = glm(y ~ x)
ci.05 = confint(fit, level=0.95)["x","2.5 %"]
print(paste("The lower bound of the 95% CI is",ci.05))

最佳答案

这是您要找的吗?

suppressMessages(confint(fit, level=0.95)["x","2.5 %"])

关于r - 我如何在 R 中沉默 confint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43847705/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com