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 after the first step.
indexes = sample(1:nrow(HW2), size=13020)
indexes1 = sample(13020:nrow(HW2), size=16020)
Line2 is throwing me an error though.
Can you use something like
Edited first line according to Pierre's suggestion