분석을 하다보면 그래프를 여러개 한번에 모아서 봐야할 때가 있습니다.
1. grid.arrange
아래의 패키지 설치가 필요합니다
#gridExtra
library(gridExtra)
grid.arrange(data1, data2, ncol = 2, nrow =1)
2. facet_wrap()
gglot에서 위의 함수를 이용하면 용이합니다.
ggplot()+
geom_bar(data=ladoc, aes(x=effect2, y=value, fill=group), stat='identity', position='stack')+
facet_wrap(~duration)
'coding > Rstudio' 카테고리의 다른 글
R] onedrive로 인한 경로 오류 발생 (0) | 2022.08.28 |
---|---|
R 함수 for() (0) | 2021.10.11 |
R outline 넣기 (0) | 2021.10.10 |
R tapply() 함수 (0) | 2021.10.10 |
함수 for() (0) | 2021.10.09 |