将公式并置到r中的图形上

时间:2016-10-10 22:42:18

标签: r plot

这是我到目前为止所拥有的:

plot(c(-2,2), c(0,4))
text(0, 2, labels= expression(EMA[1]~ "=" ~ ((P[i]*alpha)+ (EMA[i-1]*(1-alpha)))))

enter image description here

我需要它看起来像附加的公式。我觉得我需要使用bquote或类似的东西,但不能让它在上下文中工作。

enter image description here

1 个答案:

答案 0 :(得分:3)

可能是这样的:

plot(c(-2,2), c(0,4))
LABEL <- expression(EMA[1] == (P[i] %*% alpha) + (EMA[i-1] %*% (1 - alpha))
                    ~~ plain(where) ~~ alpha == frac(2, 1 + 30))
text(0, 2, labels = LABEL)

enter image description here