March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this example, we will work with a time series containing the amount of US dollars sold to the market by Argentina's agricultural-export sector from January 2003 to December 2018. We will let Prophet get the best model for us:
library(prophet)
currency_sales = read.csv("./sold_usd_oilseeds.csv")
currency_sales$indice_tiempo = as.Date(currency_sales$indice_tiempo,"%Y-%m-%d") colnames(currency_sales) = c("ds","y")
Read now
Unlock full access