데이터를 선으로 표현한 그래프
시간에 따라 달라지는 데이터 등
시계열 데이터
시계열 그래프
# x축 - date(시간), y축 - unemploy(실업자 수) ggplot(data = econ, aes(x=date,y=unemploy)) + geom_line()