如何在 R 中保存引导模型的系数和标准误差?

发布于 2025-01-11 20:20:17 字数 176 浏览 1 评论 0原文

我很难为我的引导模型的每次迭代保存 SE。下面是我正在使用的代码,它利用了 R 中 car 包中的 Boot() 函数。任何人都可以提供有关如何保存标准错误的指导吗?

bootstrap_lm <- Boot(lm, f=coef, R=500, method=c("case"))

I am having a hard time saving the SE's for each iteration for my bootstrap model. Below is the code I'm using, which utilizes the Boot() function in the car package in R. Can anyone provide guidance on how to save the standard errors?

bootstrap_lm <- Boot(lm, f=coef, R=500, method=c("case"))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷乱花海 2025-01-18 20:20:17

一种简单的方法是保存 summary(boostrap_lm1);它是一个data.frame。例如,其中一列是 bootSE

boot_summary = summary(bootstrap_lm1)
boot_summary$bootSE

One simple way is to save summary(boostrap_lm1); it is a data.frame. As an example, one of the columns is bootSE

boot_summary = summary(bootstrap_lm1)
boot_summary$bootSE
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文