从 lmList 对象中提取 RMSE

发布于 2024-10-20 12:22:40 字数 239 浏览 2 评论 0原文

我有以下代码从 lmList 对象中提取系数。

library(lme4)
library(plyr)
lm.model <- lmList(Y ~ X | eventID, df)
param <- ldply(lm.model, coef)

这段代码运行正常。然而,这是提取系数的有效方法吗?

我的主要问题是,如何从同一个 lm.model 对象中提取 RMSE?

I have the following code to extract the Coefficients from a lmList object.

library(lme4)
library(plyr)
lm.model <- lmList(Y ~ X | eventID, df)
param <- ldply(lm.model, coef)

This code is working OK. HOwever, is this an efficient way to extract the coefficients?

My main question is, how can I extract RMSE from the same lm.model object?

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

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

发布评论

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

评论(1

平生欢 2024-10-27 12:22:40

在这种情况下,不需要 ldply 来获取系数(您可以简单地使用 coef(lm.model))。
要获得残差标准误差:

ldply(slot(lm.model,".Data"),function(x) summary(x)$sigma)

In this case ldply is not necessary to get coefficients (you can simply use coef(lm.model)).
To get residual standard error:

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