我是 R 和ggplot2
. 我正在与我一起工作,ggplot2
但我无法check_overlap=TRUE
对我的 geom_text 产生任何影响。这是我的代码示例:
require(ggplot2)
LV_plot = ggplot(plotFrame,aes(x=Age,y=fit))
#... plotting other things
my_text = geom_text(data=myDataFrame,mapping=aes(x=Age,y=myDataFrame$firstVolume, label=paste(myDataFrame$firstVolume)),angle=70,size=6,check_overlap=TRUE)
LV_scatterNorm = geom_point(data=myDataFrame,aes(x=Age,y=firstVolume),size=4.0)
LV_lineNorm = geom_line(data=myDataFrame,aes(x=Age,y=firstVolume),size=1.2)
这会创建多个文本元素,但 check_overlap=TRUE 对它们的重叠没有影响——它们大部分时间都重叠。
这是我的数据:
我的数据框:
firstVolume Age
1 26502.54 56
2 28335.54 57
图框:
Age fit se sd
1 43 10481.39 2555.560 16036.31
2 44 11164.03 2390.339 16036.31
3 45 11849.98 2225.044 16036.31
4 46 12537.78 2063.854 16036.31
5 47 13225.95 1910.410 16036.31
6 48 13913.05 1767.397 16036.31
7 49 14597.60 1636.212 16036.31
8 50 15278.15 1516.911 16036.31
9 51 15950.26 1408.477 16036.31
10 52 16612.87 1315.257 16036.31
...etc.
我的结果如下所示:
这是在 R 3.1.1 中。我究竟做错了什么?
(我尝试安装 ggrepel,但似乎 ggrepel 不适用于此版本的 R。)
谢谢!