How can I can remove the letter 'a' from the legend generated by this code? If I remove the geom_text
, then the 'a' letter will not show in the legend. I want to keep geom_text
, though.
ggplot(data = iris, aes(x = Sepal.Length, y=Sepal.Width,
shape = Species, colour = Species)) +
geom_point() +
geom_text(aes(label = Species))
Set
show.legend = FALSE
ingeom_text
:The argument
show_guide
changed name toshow.legend
inggplot2 2.0.0
(see release news).Pre-
ggplot2 2.0.0
:With
show_guide = FALSE
like so...