使用geom_text解析文本时不一致

时间:2016-04-13 00:05:24

标签: r ggplot2

以下代码:

library(ggplot2)
df<-data.frame(x=1:4,y=c(1,2,1,2),z=c('.00019','.00020','.00021','2.2 %*% 10^-5'))
ggplot(df,aes(x=x,y=y,label=z))+geom_text(parse=TRUE)

将生成以下图: enter image description here

如何避免将字符串'.00020'转换为'2e-04'?

1 个答案:

答案 0 :(得分:3)

try this :

options(scipen=10)