반응형
pm2.5plot<-ggplot(tsv,aes(x=date,y=PM2.5, colour=기기이름,group=기기이름))+
geom_line()+
theme(legend.position="none", legend.box="vertical", axis.title.y=element_blank())+
facet_wrap(~"PM2.5",ncol = 1,scales="free")
범례 제거하기
legend.position="none"
x축 라벨 제거하기
axis.title.x=element_blank()
y축 라벨 제거하기
axis.title.y=element_blank()
반응형
'코딩 관련 > 기타' 카테고리의 다른 글
AWS EC2(Amazon Linux) JAVA 11 설치하기 / ec2 jdk11 설치 (0) | 2021.11.25 |
---|---|
[R] 문자열 합치기 (0) | 2021.10.14 |
[git] git 올리기 / git 저장 / git 프로젝트 업로드 / git 최초 업로드 / git init (0) | 2021.09.30 |
[Linux] packages excluded due to repository priority protections (0) | 2021.07.01 |
[R] 'origin'이 반드시 주어져야 합니다 (0) | 2021.04.30 |