我怎样才能删除周围的线geom_label_repel
。使用label.size = 0
似乎没有明显的效果。我可以设置`颜色
library(ggplot2)
library(ggrepel)
ggplot(mtcars, aes(wt, mpg, color = wt)) +
geom_point(color = 'red') +
geom_label_repel(aes(label = rownames(mtcars)), label.size = 0, fill = "white") +
theme_classic(base_size = 16)
geom_text_repel
在空格后输入 ageom_label_repel
偶尔会起作用,但并不可靠:这些框可能出现在与文本不同的位置。