반응형
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()

반응형

+ Recent posts