在R plotmath中连接字符串和结果

时间:2013-08-20 12:50:10

标签: r plotmath

在R中,我想在一个情节中加入一个传说,其结果是Spearman的rho。我用这个:

expression(paste(rho, " = ", cor(v$V1, v$V2, method = 'spearman')))

但是在传说中我得到了:

p = cor($(v,V1), $(v,V2), spearman)

如何获得cor的结果?

1 个答案:

答案 0 :(得分:2)

以下是一个应该有用的示例:

set.seed(42)
x <- 1:10
y <- rnorm(10)
plot(x,y)
text(7,1, bquote(rho==.(cor(x,y, method="spearman"))))

enter image description here

?bquote解释说它会评估.()内的来电。您通常无需在paste中使用plotmath