| [ Web Proxy ] |
| Viewing: https://arrow.apache.org/docs/python/generated/../api/../../cpp/../r/reference/as_arrow_array.html | [Back] [Original] |
The as_arrow_array() function is identical to Array$create() except
that it is an S3 generic, which allows methods to be defined in other
packages to convert objects to Array. Array$create() is slightly faster
because it tries to convert in C++ before falling back on
as_arrow_array().
as_arrow_array(x, ..., type = NULL)
# S3 method for class 'Array'
as_arrow_array(x, ..., type = NULL)
# S3 method for class 'Scalar'
as_arrow_array(x, ..., type = NULL)
# S3 method for class 'ChunkedArray'
as_arrow_array(x, ..., type = NULL)An object to convert to an Arrow Array
Passed to S3 methods
A type for the final Array. A value of NULL
will default to the type guessed by infer_type().
An Array with type type.
| Web Proxy Viewer | New URL | Original Page |