R在图表本身上打印线性回归方程

jxn*_*jxn 9 regression r

我们如何在图上打印线的方程?

我有2个自变量,想要这样的等式:

y=mx1+bx2+c

where x1=cost, x2 =targeting
Run Code Online (Sandbox Code Playgroud)

我可以绘制最佳拟合线,但如何在图上打印方程?

也许我不能在一个等式中打印出2个自变量,但y=mx1+c至少我怎么做呢 ?

这是我的代码:

fit=lm(Signups ~ cost + targeting)
plot(cost, Signups, xlab="cost", ylab="Signups", main="Signups")
abline(lm(Signups ~ cost))
Run Code Online (Sandbox Code Playgroud)

alk*_*989 14

我尝试自动输出一点:

fit <- lm(mpg ~ cyl + hp, data = mtcars)
summary(fit)
##Coefficients:
##             Estimate Std. Error t value Pr(>|t|)    
## (Intercept) 36.90833    2.19080  16.847  < 2e-16 ***
## cyl         -2.26469    0.57589  -3.933  0.00048 ***
## hp          -0.01912    0.01500  -1.275  0.21253 


plot(mpg ~ cyl, data = mtcars, xlab = "Cylinders", ylab = "Miles per gallon")
abline(coef(fit)[1:2])

## rounded coefficients for better output
cf <- round(coef(fit), 2) 

## sign check to avoid having plus followed by minus for negative coefficients
eq <- paste0("mpg = ", cf[1],
             ifelse(sign(cf[2])==1, " + ", " - "), abs(cf[2]), " cyl ",
             ifelse(sign(cf[3])==1, " + ", " - "), abs(cf[3]), " hp")

## printing of the equation
mtext(eq, 3, line=-2)
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

希望能帮助到你,

亚历克斯