从 lmList 对象中提取 RMSE
我有以下代码从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,不需要 ldply 来获取系数(您可以简单地使用 coef(lm.model))。
要获得残差标准误差:
In this case ldply is not necessary to get coefficients (you can simply use coef(lm.model)).
To get residual standard error: