基于分步公式的 GLM 和 GLMM _R_ 代码
我知道如何使用 glm
和 glmer
GLM) 和广义线性混合模型 (GLMM) > 来自 R 中的 lme4 包。作为一名统计专业的学生,我有兴趣学习如何按照分步公式库 R 代码拟合 GLM 和 GLMM。如果您指出这方面的任何资源和/或参考资料,我将不胜感激。提前致谢。
编辑
我想使用公式逐步进行GLM和GLMM,就像我们使用矩阵方法LM一样。有没有使用这种方法的R书籍或教程?谢谢
I know how to fit generalized linear models (GLMs) and generalized linear mixed models (GLMMs) with glm
and glmer
from lme4 package in R. Being a student of statistics, I'm interested in learning how to fit GLM and GLMM following step-by-step formula bases R codes. I'd highly appreciate if you point out any resource and/or reference in this regard. Thanks in advance.
EDiT
I'd like to do GLM and GLMM step by step using formula as we do LM using matrix approach. Is there any R book or tutorial available that use this approach? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Fox 和 Weisberg 撰写的“An R Companion to Applied Regression”在第 8 章提供了很好的指南,以逻辑回归为例。本书还介绍了如何使用 S3 和 S4 对象创建一般模型函数。特别是,它对我最近提出的有关建模的问题有很好的答案 - R 中标准模型对象的关键组件和功能是什么?。
"An R Companion to Applied Regression" by Fox and Weisberg, has an excellent guide in chapter 8, with logistic regression as an example. The book also teaches a bit about how to create model functions in general with S3 and S4 objects. In particular, it has good answers to a recent question I'd asked about modeling -- What are the key components and functions for standard model objects in R?.
这可能有帮助
** 泊松回归:GLM**
*建议阅读:《广义线性模型简介》,作者:Annette J. Dobson,第二版,第 4 章,第 4.3 和 4.4 节 *
This may help
** Poisson regression: GLM**
*Suggested reading: An Introduction to generalized linear model, by Annette J. Dobson, 2nd Edition, Chapter 4, section 4.3 and 4.4 *