vector-coercion | R Documentation |
These are equivalent to the base functions (e.g. as.logical()
,
as.list()
, etc), but perform coercion rather than conversion.
This means they are not generic and will not call S3 conversion
methods. They only attempt to coerce the base type of their
input. In addition, they have stricter implicit coercion rules and
will never attempt any kind of parsing. E.g. they will not try to
figure out if a character vector represents integers or booleans.
Finally, they treat attributes consistently, unlike the base R
functions: all attributes except names are removed.
as_logical(x)
as_integer(x)
as_double(x)
as_complex(x)
as_character(x, encoding = NULL)
as_list(x)
x |
An object to coerce to a base type. |
encoding |
If non-null, set an encoding mark. This is only declarative, no encoding conversion is performed. |
These functions are deprecated in favour of vctrs::vec_cast()
.
To logical vectors: Integer and integerish double vectors. See
is_integerish()
.
To integer vectors: Logical and integerish double vectors.
To double vectors: Logical and integer vectors.
To complex vectors: Logical, integer and double vectors.
as_character()
and as_string()
have an optional encoding
argument to specify the encoding. R uses this information for
internal handling of strings and character vectors. Note that this
is only declarative, no encoding conversion is attempted.
Note that only as_string()
can coerce symbols to a scalar
character vector. This makes the code more explicit and adds an
extra type check.
as_list()
only coerces vector and dictionary types (environments
are an example of dictionary type). Unlike base::as.list()
,
as_list()
removes all attributes except names.
A technical side-effect of removing the attributes of the input is
that the underlying objects has to be copied. This has no
performance implications in the case of lists because this is a
shallow copy: only the list structure is copied, not the contents
(see duplicate()
). However, be aware that atomic vectors
containing large amounts of data will have to be copied.
In general, any attribute modification creates a copy, which is why it is better to avoid using attributes with heavy atomic vectors. Uncopyable objects like environments and symbols are an exception to this rule: in this case, attributes modification happens in place and has side-effects.
# Coercing atomic vectors removes attributes with both base R and rlang:
x <- structure(TRUE, class = "foo", bar = "baz")
as.logical(x)
# But coercing lists preserves attributes in base R but not rlang:
l <- structure(list(TRUE), class = "foo", bar = "baz")
as.list(l)
as_list(l)
# Implicit conversions are performed in base R but not rlang:
as.logical(l)
## Not run:
as_logical(l)
## End(Not run)
# Conversion methods are bypassed, making the result of the
# coercion more predictable:
as.list.foo <- function(x) "wrong"
as.list(l)
as_list(l)
# The input is never parsed. E.g. character vectors of numbers are
# not converted to numeric types:
as.integer("33")
## Not run:
as_integer("33")
## End(Not run)
# With base R tools there is no way to convert an environment to a
# list without either triggering method dispatch, or changing the
# original environment. as_list() makes it easy:
x <- structure(as_environment(mtcars[1:2]), class = "foobar")
as.list.foobar <- function(x) abort("dont call me")
as_list(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.