R로 시계열 데이터 시각화하기
Arnaud Amsellem
Quantitative Trader and creator of the R Trader blog
Date, POSIX Time, timeDate, chron
plot()plot.xts()xts이면 plot()을 plot.xts() 대신 사용할 수 있음
plot(my_ts)

plot(my_ts, main = "my first time series")
lines(my_ts, col = "red", lwd = 2)

plot(my_ts, main = "my first time series",
sub = "from Sep. 2008 to Dec. 2016")
lines(my_ts, col = "red", lwd = 2)
R로 시계열 데이터 시각화하기