R ile İstatistik Mülakat Soruları Pratiği
Zuzanna Chmielewska
Actuary
Zaman serilerinin kullanım alanları:


Zaman serisi analizi:



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 nesnesiR ile İstatistik Mülakat Soruları Pratiği