I want to keep the legends, but I don't understand why I see that annoying 'a'...
Any help? Here is a small reprex:
library(dplyr)
library(ggplot2)
library(ggrepel)
iris %>%
ggplot(aes(x = Sepal.Length,
y= Sepal.Width,
fill = Species,
label = round(rnorm(nrow(iris))))) +
geom_label_repel()