March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this recipe, we will work with a time series containing data for automobiles produced in Brazil from January 1981 to December 2018. The objective will be to model this series and ultimately make predictions:
library(forecast) car_production = read.csv(".../car_production.csv")car_production$indice_tiempo = as.Date(car_production$indice_tiempo,"%Y-%m-%d") car_production = ts(car_production$produccion_automotriz_unidades,start=c(1981,1), frequency = 12)
Read now
Unlock full access