我正在尝试从qplot中提取500个变量的截距和斜率。我正在使用的代码:
qplot(gd, nd, data = test, colour = factor(ENT)) +
geom_smooth(method = "lm", se = FALSE)
有人可以帮我提取每个回归线(500行/变量)的截距和斜率,如附图所示。
答案 0 :(得分:3)
ggplot
将绘制图形,但您从lm()
对象中提取系数(截距和斜率)。后者的一种方法是使用dplyr的group_by()
和do()
函数。见?做
我在这里使用mtcars数据框。
library(ggplot2)
library(dplyr)
ggplot(mtcars, aes(mpg, disp, colour = factor(cyl))) +
geom_point() +
geom_smooth(method = "lm", se = FALSE)
mtcars %>%
group_by(cyl) %>%
do({
mod = lm(disp ~ mpg, data = .)
data.frame(Intercept = coef(mod)[1],
Slope = coef(mod)[2])
})
Source: local data frame [3 x 3]
Groups: cyl
cyl Intercept Slope
1 4 233.0674 -4.797961
2 6 125.1225 2.947487
3 8 560.8703 -13.759624
答案 1 :(得分:3)
如何使用lmList
函数,该函数用于计算多个组的线性回归?
library("nlme")
coef(lmList(nd~gd|ENT , data = test))