在表达式

时间:2015-12-11 14:30:02

标签: r expression title

我想创建一个情节标题“Case1,\ xi_ {DES}”,其中\ xi是希腊字母,DES必须是下标,“Case1”实际存储在变量中。以下

expression + variable value + normal text in plot maintitle

我试过

Case="Case1"
x=1:3
y=rnorm(3)
plot(x,y, cex=1.5, cex.lab=1.5, 
pch=16, xlab="degree", ylab=expression(italic(paste("|",hat(F),"|"))),
main=bquote(.(Case) ~ , eta[DES]), col="tomato",log="y")

但这不起作用。以下有效:

plot(x,y, cex=1.5, cex.lab=1.5, 
pch=16, xlab="degree", ylab=expression(italic(paste("|",hat(F),"|"))),
main=bquote(.(Case) ~  eta[DES]), col="tomato",log="y")

但我必须删除逗号。这是为什么?有没有办法在R中获得我想要的标题?

1 个答案:

答案 0 :(得分:5)

如果你不知道(这不容易找到),文档在help("plotmath")

par(mar = c(5, 5.5, 4, 2) + 0.1)
plot(x,y, cex=1.5, cex.lab=1.5, 
     pch=16, xlab="degree", ylab=expression(italic(group("|",hat(F),"|"))),
     main=bquote(.(Case)*","~xi[{DES}]), col="tomato",log="y")

resulting plot