在R图上使用文本中的多行时,符号和上标之间的空格

时间:2018-05-30 22:48:43

标签: r plot superscript

在基础R图中使用多行文本时,我无法在其符号旁边保留上标。请考虑以下示例:

plot(c(0,1), c(0,1), axes=F, xlab="", ylab="", type='n')
x1 <- expression(paste("(1) here is some text s" ^-1))
text(0.5, 0.25, x1)

x2 <- expression(paste("(2) here is some text\n s" ^-1))
text(0.5, 0.5, x2)

enter image description here

案例“1”很好,但是在“2”的情况下添加了很多空格

0 个答案:

没有答案