R로 연습하는 통계 면접 질문
Zuzanna Chmielewska
Actuary
시계열의 활용:


시계열 분석:



ts <- xts(x = values, order.by = dates)
plot(ts)

dates <- seq(from = as.Date("2010-01-01"),
to = as.Date("2010-12-31"))
dates <- seq(from = as.Date("2010-01-01"),
to = as.Date("2010-12-31"),
by = "1 month")
dates <- seq(from = as.Date("2010-01-01"),
to = as.Date("2010-12-31"),
by = "1 month")
ts[dates]







xts 객체R로 연습하는 통계 면접 질문