我想知道mtext()怎么了,我无法正确显示图上方的数字G

这是我的R代码:

G <- .3333 ## but G can be anything as it comes from a function

curve(dnorm(x),-3,3)
mtext(expression(paste("Medium: ",bold('CT'[12])," = ", round(G,2))),line=3)

最佳答案

您可以为此使用bquote.()(用于在表达式中包括变量):

G <- 0.3333
curve(dnorm(x),-3,3)
mtext(bquote(paste("Medium: ",bold('CT'[12])," = ", .(round(G,3)))),line=3)


这给出:

r - R图中的mtext()-LMLPHP

关于r - R图中的mtext(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42029328/

10-08 23:05