March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this recipe, we will work with multiple time series related to oil/gas in Argentina. The objective will be to model these series as a unique model, and then make predictions out of that model:
library(vars) oilgas = read.csv("./fuel_series.csv") colnames(oilgas) = c("time_index","oil_processed","gasoil_prod","fueloil_prod","butane") joined_data = ts(oilgas[-1],start=c(1996,1),frequency=12)
Read now
Unlock full access