ggrepel:在点上方绘制标签

时间:2016-10-09 11:34:39

标签: r ggplot2 ggrepel

我想在可能的情况下精确地将标签绘制在点之上(没有重叠),但是ggrepel似乎坚持略微高于或低于绘图。 E.g。

require(ggplot); require(ggrepel)

ggplot(iris[1:10,], aes(Sepal.Length, Sepal.Width)) + 
  geom_point(pch=1, size=8) +
  geom_text_repel(aes(label=Species), segment.color=NA, 
                  point.padding=unit(0, "lines")) 

enter image description here

您当然可以减少force参数,但是当 重叠时,标签不会相互排斥。

2 个答案:

答案 0 :(得分:4)

据我所知,您可以通过point.paddinggeom_point(size)相同的值来避免重叠。您可以通过为nudge_y提供一个非常小的加值来定义上述位置。

library(dplyr)
 ## an example data (delete duplicated data)
iris2 <- iris %>% distinct(Sepal.Length, Sepal.Width, .keep_all = T)

g <- ggplot(iris2[1:20,], aes(Sepal.Length, Sepal.Width)) + geom_point(pch=1, size=8)
g + geom_text_repel(aes(label=Species), segment.color=NA, 
                    point.padding = unit(8, "points"), nudge_y = 1.0E-6)

<强> [EDITED]
我猜box.padding = unit(-0.5, "lines")给标签指出了积分位置(但它可能基于大写字母)。

iris2$Species <- as.character(iris2$Species)
iris2[7,5] <- "ABCDEFG"

g2 <- ggplot(iris2[1:20,], aes(Sepal.Length, Sepal.Width)) + geom_point(pch = 1, size = 8)
g2 + geom_text_repel(aes(label=Species), segment.color=NA, box.padding = unit(-0.5, "lines"))

enter image description here

答案 1 :(得分:0)

也许你可以改变nudge_y和nudge_x来调整标签。如果你想改变每个点,也许你可以设置一个新的数据框来支撑标签&#39;坐标。