3

我想在可能的点上精确地绘制标签(没有重叠),但 ggrepel 似乎坚持要略高于或低于绘制。例如

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时标签不会相互排斥。

4

2 回答 2

5

据我所知,您可以通过给出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)

[编辑]
我想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"))

在此处输入图像描述

于 2016-10-09T18:28:01.400 回答
0

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

于 2016-10-09T12:26:45.003 回答