要使用R语言绘制多个线性回归图,可以使用ggplot2
包和lm()
函数。以下是一种基本的方法:
ggplot2
包:install.packages("ggplot2")
library(ggplot2)
data
的数据集,包含两个自变量x1
和x2
,以及一个因变量y
:data <- data.frame(x1 = c(1, 2, 3, 4, 5),
x2 = c(2, 4, 6, 8, 10),
y = c(3, 6, 9, 12, 15))
lm()
函数对每个自变量进行线性回归分析,并提取斜率和截距:lm1 <- lm(y ~ x1, data = data)
lm2 <- lm(y ~ x2, data = data)
slope1 <- coef(lm1)[2]
intercept1 <- coef(lm1)[1]
slope2 <- coef(lm2)[2]
intercept2 <- coef(lm2)[1]
ggplot
图形对象:plot <- ggplot(data, aes(x = x1, y = y)) + geom_point()
geom_abline()
函数添加第一个线性回归线:plot <- plot + geom_abline(slope = slope1, intercept = intercept1, color = "blue")
geom_abline()
函数添加第二个线性回归线:plot <- plot + geom_abline(slope = slope2, intercept = intercept2, color = "red")
facet_wrap()
函数将图形分割为多个子图,每个子图对应一个自变量:plot <- plot + facet_wrap(~ variable, scales = "free")
plot
通过以上步骤,您将得到一个包含多个线性回归图的图形对象。您可以根据需要进一步自定义图形,例如添加标题、调整坐标轴标签等。