用两个值之间的逗号绘制文本下标

时间:2016-07-02 04:09:36

标签: r plot expression

当我在R中绘制内容时,我想写下面的文字。这里的下标是希腊字母alpha和nu,中间有逗号。

enter image description here

我尝试了以下代码,但没有得到逗号和nu。

plot(1, 1, main = expression(t[alpha, nu]))

enter image description here

有什么建议吗?

2 个答案:

答案 0 :(得分:4)

我们也可以使用bquote

plot(1, 1, main = bquote(t[alpha*","*nu]))

enter image description here

或者@Roland提到,quote也可以使用

plot(1, 1, main = quote(t[alpha*","*nu]))

答案 1 :(得分:3)

您可以使用paste()包含逗号:

plot(1, 1, main = expression(t[paste(alpha, ",", nu)]))

enter image description here