Djoko Soehartono and M. Farhan Rashid
In this DIVACTORY 01 Warm Up case study, we are given Training_Data.csv and Test_Data.csv CSV data files for training and test data correspondingly.
Objectives for this case study are:
Extract the Training_Data and Test_Data datasets:
Training_Data <- read.csv("Training_Data.csv", header = TRUE, sep = ",")
Test_Data <- read.csv("Test_Data.csv", header = TRUE, sep = ",")