6
미학과 geom_text를 사용할 때 범례에서 'a'제거
이 코드로 생성 된 범례에서 문자 '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))
124
r
ggplot2
aesthetics