Restaurant Visitor Forcasting
library(dplyr)
library(caret)
library(lubridate)
library(zoo)
library(tidyr)
library(padr)
library(forecast)
library(tseries)
library(TTR)
library(rmarkdown)
library(DT)Import Data
This data contain both data train and data test, data train will be used to train the model, meanwhile data test will be used as unseen data (new data). I’ll perform feature engineering to get total visitor of the restaurant (see in pre processing section), and use it to predict total visitor of the data test.
data_train <- read.csv("data_input/data-train.csv")
datatable(data_train, options = list(scrollX = T))