as.list.iteror | R Documentation |
Collect all (or some given number of) values from an iteror, returning a vector of the given type.
## S3 method for class 'iteror'
as.list(x, n = as.integer(2^31 - 1), ...)
## S3 method for class 'iteror'
as.double(x, n = as.integer(2^31 - 1), ...)
## S3 method for class 'iteror'
as.numeric(x, n = as.integer(2^31 - 1), ...)
## S3 method for class 'iteror'
as.logical(x, n = as.integer(2^31 - 1), ...)
## S3 method for class 'iteror'
as.character(x, n = as.integer(2^31 - 1), ...)
## S3 method for class 'iteror'
as.vector(x, mode)
x |
an iterable object |
n |
the maximum number of elements to return. |
... |
Unused arguments will throw an error. |
mode |
What mode to use for the output vector. |
The returned value will be n
elements long if the
iterator did not stop.
concat take
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.