■ qplot 함수에서 Bar 차트를 그리는 방법을 보여준다.
▶ 예제 코드 (R)
1 2 3 4 5 6 7 8 9 10 11 |
매출 = read.csv('data_win.csv') library(dplyr) library(ggplot2) library(scales) 월점포비교 = 매출 %>% filter(매출월 == 1) %>% group_by(점포) %>% summarise(합계 = sum(구매건수)) qplot(점포, data = 월점포비교, geom = 'bar', fill = 점포) + geom_bar(aes(weight = 합계)) + scale_y_continuous(labels = comma) |