1 선 그래프 데이터 준비하기
그래프를 그리려면 먼저 데이터를 준비해야 합니다.
# 예약 번호(reserv_no)별로 매출 합계를 구함 total_amt <- order_info_r %>% group_by(reserv_no) %>% summarise(amt_daily = sum(sales/1000)) %>% arrange(reserv_no) total_amt # 데이터셋 확인
코드를 실행하면 다음과 같습니다.
# A tibble: 337 x 2 reserv_no amt_daily <chr> <dbl> 1 2019060301 140 2 2019060601 152 3 2019060701 48 4 2019061601 105 5 2019061801 48 6 2019062001 10 7 2019062201 48 8 2019062601 8 9 2019062901 54 10 2019070101 50 # ... with 327 more rows