我想在可能的情况下精确地将标签绘制在点之上(没有重叠),但是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"))
您当然可以减少force
参数,但是当 重叠时,标签不会相互排斥。
答案 0 :(得分:4)
据我所知,您可以通过point.padding
与geom_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"))
答案 1 :(得分:0)
也许你可以改变nudge_y和nudge_x来调整标签。如果你想改变每个点,也许你可以设置一个新的数据框来支撑标签&#39;坐标。