Answers for "c) Split the data into a training set and a test set."

0

how to split train and test data in r

library(caTools)
sample <- sample.split(data$y, SplitRatio = 0.7)
train_data <- subset(data, sample == TRUE)
test_data <- subset(data, sample == FALSE)
Posted by: Guest on April-26-2020

Code answers related to "c) Split the data into a training set and a test set."

Browse Popular Code Answers by Language