Recent Posts
Stats & AI tech blog - '일단 시도함'
[R] 여러 개의 ggplot 한번에 저장 (ggplot, ggsave) 본문
col.list <- c("ta","hm","ts","ws10_deg","ws10_ms","sun10","sun24","diff_temp")
for(col in col.list){
name <- paste0(col,'.season.box.png')
p <- ggplot(data, aes(x=season, y = .data[[col]])) +
geom_boxplot(aes(fill = region), width = 0.8) +
facet_grid(year)+
theme(axis.title.y = element_text(size = 18))
ggsave(name, plot = p)
}
'Programming > R' 카테고리의 다른 글
[R] K-Means Clustering (0) | 2024.02.26 |
---|---|
[R] 자주 쓰는 전처리 코드 정리 (0) | 2024.02.23 |
[R] 그룹 별로 정규성 검정 (shapiro_test, group_by, qqplot) (0) | 2024.01.17 |
[R] Decision Tree (의사결정나무) (0) | 2024.01.15 |
[R] Cohen's Kappa (카파상관계수) (0) | 2024.01.12 |