最佳答案
我怎样才能从这个代码生成的图例中删除字母‘ a’?如果我删除 geom_text
,那么“ a”字母将不会显示在图例中。但我想保留 geom_text
。
ggplot(data = iris, aes(x = Sepal.Length, y=Sepal.Width,
shape = Species, colour = Species)) +
geom_point() +
geom_text(aes(label = Species))