
Split object in blocks
split_vec(x, block_len, nb_split = ceiling(length(x)/block_len))split_df(df, block_len, nb_split = ceiling(nrow(df)/block_len))
Vector to be divided into groups.
Maximum length (or number of rows) of each block.
Number of blocks. Default uses the other 2 parameters.
Data frame to be divided into groups.
A list with the splitted objects.
# NOT RUN {
split_vec(1:10, block_len = 3)
str(split_df(iris, nb_split = 3))
# }
Run the code above in your browser using DataLab