CubeStatistica / Professional-Training-for-Data-Science-C1

Online-Professional-Training-for-Data-Science-Using-R (OPTDSUR) Professional-Training-for-Data-Science-C1
0 stars 1 forks source link

Week 3: Split the data with the ratio of 50%,25%,25%.. #93

Open javariaqayyum opened 1 year ago

javariaqayyum commented 1 year ago

Set seed and split data into three train, test and validation. Ration must be 50% , 25% and 25%.

set.seed(1000) fractionTraining <- 0.50 fractionValidation <- 0.25 fractionTest <- 0.25

javariaqayyum commented 1 year ago