| ichunk {itertools} | R Documentation |
Create an iterator that issues lists of values from the underlying iterable. This is useful for manually “chunking” values from an iterable.
ichunk(iterable, chunkSize)
iterable |
Iterable to iterate over. |
chunkSize |
Maximum number of values from |
# Split the vector 1:10 into "chunks" with a maximum length of three
it <- ihasNext(ichunk(1:10, 3))
while (hasNext(it)) {
print(unlist(nextElem(it)))
}