1

The default symbol in the legend is a lowercase "a". When I try to use points on the plot using geom_point(size=n) it will simply overlay this symbol; but if the point is not big enough, the lowercase "a" is still visible. How can I remove this completely and just use the geom_point.

Legend with overlaid point

enter image description here

Legend without geom_point

enter image description here

zx8754
  • 52,746
  • 12
  • 114
  • 209
TomNash
  • 3,147
  • 2
  • 21
  • 57

1 Answers1

3

use show.legend = FALSE :

myggplot + geom_text(show.legend=FALSE)
scoa
  • 19,359
  • 5
  • 65
  • 80