我需要在pdf文件中的方程式中呈现线性模型的结果。
我的R降价示例如下:
```{r}
D <- data.frame(x1=1:10,x2=cos(21:30),y=sin(1:10))
M1 <- lm( y ~ x1 + x2, data=D )
( C <- coef(M1) )
``````
结果
(Intercept) x1 x2
0.08505352 -0.02160815 -0.93696541
导致字符串输出结果,但不是图形方程式。
提前致谢。
答案 0 :(得分:3)
您可以在$$
公式中使用r代码:
$$y = `r C[1]``r C[2]` x1 `r C[3]` x2 $$