I have a data in .csv with 19020 observations. I need to split the data randomly into parts of 13020, 3000 and 3000 in R. I have tried the following code but it doesn\'t help me
Can you use something like
index <- sample(19020) part1 <- HW2[index[1:13020],] part2 <- HW2[index[13021:16020],] part3 <- HW2[index[16021:19020],]
Edited first line according to Pierre's suggestion