■ png 함수를 사용해 그래프를 저장하는 방법을 보여준다.
▶ 예제 코드 (R)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
매출 = read.csv('data_win.csv') library(dplyr) library(ggplot2) library(scales) 월점포비교 = 매출 %>% filter(매출월 == 1) %>% group_by(점포) %>% summarise(합계 = sum(구매건수)) png('점포비교.png', 1000, 800) qplot(점포, data = 월점포비교, geom = 'bar', fill = 점포) + geom_bar(aes(weight = 합계)) + scale_y_continuous(labels = comma) dev.off() |