March 2019
Beginner to intermediate
448 pages
13h 14m
English
The imputeTS package is incredibly powerful and easy to use; it can be used to impute missing values for time series. In this recipe, we will load a dataset containing biodiesel production figures for Argentina (this is a monthly dataset from 2008 to 2018 containing monthly production values):
library(imputeTS) library(ggplot2) biodisel_prod = read.csv("./biodiesel.csv") biodisel_prod$indice_tiempo = as.Date(biodisel_prod$indice_tiempo,"%Y-%m-%d")
biodisel_prod$indice_tiempo = as.Date(biodisel_prod$indice_tiempo,"%Y-%m-%d") ...
Read now
Unlock full access