gpt4 book ai didi

r - R 图中的 mtext()

转载 作者:行者123 更新时间:2023-12-04 09:29:41 24 4
gpt4 key购买 nike

我想知道 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)

这给出:

enter image description here

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com