반응형
데이터는 내장데이터 iris 를 사용하였습니다. 설명은 주석으로 대신합니다.
library(ggplot2)
ggplot()+
geom_point(data=iris, aes(x=Sepal.Length,y=Sepal.Width,color=Species))+
#범례 추가
theme(legend.position = 'top')+
#범례 타이틀 색,크기,진하게 설정
theme(legend.title = element_text(color = "black", size = 20, face = "bold"))+
#범레 텍스트 색,크기,진하게 설정
theme(legend.text = element_text(color = "black", size = 12, face = "bold"))+
#범례 색 설정
scale_color_manual(values=c('red','blue','green'))
#범례 이름 강제 설정(선택)
labs(color="legend")
반응형
'6. 데이터 시각화 - ggplot2 > 공통' 카테고리의 다른 글
[ggplot2] 화면분할하는 방법 (0) | 2023.01.18 |
---|---|
[ggplot2] 화면 분할 그래프 for문 이용해서 그리기 (0) | 2023.01.18 |
[R ggplot2] 축 눈금 레이블 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
[R ggplot2] 축 제목, 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
[R ggplot2] x축 라벨 각도 회전하기 (0) | 2022.05.31 |
댓글