我正在使用annotate()
在我的ggplot2
个地块上叠加文字。我正在使用选项parse=T
,因为我需要使用希腊字母rho。我希望文字说= -0.50
,但是尾随的零被剪切,我得到-0.5
。
以下是一个例子:
library(ggplot2)
x<-rnorm(50)
y<-rnorm(50)
df<-data.frame(x,y)
ggplot(data=df,aes(x=x,y=y))+
geom_point()+
annotate(geom="text",x=1,y=1,label="rho==-0.50",parse=T)
有谁知道如何让最后的0出现?我以为我可以这样使用paste()
:
annotate(geom="text",x=1,y=1,label=paste("rho==-0.5","0",sep=""),parse=T)
然后我收到错误:
Error in parse(text = lab) : <text>:1:11: unexpected numeric constant
1: rho==-0.5 0
^
答案 0 :(得分:15)
这是plotmath
表达式解析问题;它不是ggplot2
相关的。
您可以做的是确保将0.50
解释为字符串,而不是将被舍入的数值:
ggplot(data=df, aes(x=x, y=y)) +
geom_point() +
annotate(geom="text", x=1, y=1, label="rho=='-0.50'", parse=T)
使用base
:
plot(1, type ='n')
text(1.2, 1.2, expression(rho=='-0.50'))
text(0.8, 0.8, expression(rho==0.50))
如果您想要更通用的方法,请尝试类似
的方法sprintf('rho == "%1.2f"',0.5)
此问题与r-help thread有关。