如何在数学表达式中添加星号?

时间:2013-02-14 09:36:43

标签: r plot symbols annotate

我正在尝试用R²值和重要性编码来注释一个图,但是我不能将*作为符号传递而不是作为并置运算符。

我试过?plot.math,这是我试过的

plot(1:10,1:10)
text(6,4,expression(R^2==8))
text(6,4,expression(R^2==8^{**}))
Error: unexpected '^' in "text(6,4,expression(R^2==8^{**"

1 个答案:

答案 0 :(得分:12)

您需要在表达式中使用paste

text(4,6,expression(paste(R^2==8^"**")))

text(6,4,expression(paste(R^2==8, "**")))

enter image description here