이제 ggplot의 geom_point() 함수를 이용해서 날짜별 투표수를 시각화해 보자. geom_point()는 선 그래프를 그리는 함수로 날짜별 증감 추이를 보기에 적당하다. x축에는 날짜, y축에는 투표수가 나오도록 하자.
(ggplot(petition_votes) + aes(x='start', y='votes') + geom_point() + geom_line(color='blue') + labs(x='날짜', y='투표수', title='일별 투표수') + theme(text=element_text(family=font_family), figure_size=(12,6), axis_text_x=element_text(rotation=60) )
실행 결과