作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从biglm
对象中提取公式?我已经尝试过函数 as.formula()
,但它没有返回我期望的结果。示例:
m1 = lm(Fertility ~ Agriculture + Examination + Education + Catholic + Infant.Mortality, data=swiss)
as.formula(m1) # returns only the formula expression (that's what I want!)
# returns: Fertility ~ Agriculture + Examination + Education + Catholic + Infant.Mortality
library(biglm)
m2 = biglm(Fertility ~ Agriculture + Examination + Education + Catholic + Infant.Mortality, data=swiss)
as.formula(m2) # returns many things, but I want only the formula expression
最佳答案
您可以使用术语
和公式
:
formula(terms(m2))
Fertility ~ Agriculture + Examination + Education + Catholic +
Infant.Mortality
关于r - 如何从 biglm 对象中提取公式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21438928/
我是一名优秀的程序员,十分优秀!