| vec_ptype {vctrs} | R Documentation |
Find the prototype of a set of vectors
Description
vec_ptype() returns the unfinalised prototype of a single vector.
vec_ptype_common() finds the common type of multiple vectors.
vec_ptype_show() nicely prints the common type of any number of
inputs, and is designed for interactive exploration.
Usage
vec_ptype(x, ..., x_arg = "", call = caller_env())
vec_ptype_common(..., .ptype = NULL, .arg = "", .call = caller_env())
vec_ptype_show(...)
Arguments
x |
A vector |
... |
For For |
x_arg |
Argument name for |
call, .call |
The execution environment of a currently
running function, e.g. |
.ptype |
If Alternatively, you can supply |
.arg |
An argument name as a string. This argument will be mentioned in error messages as the input that is at the origin of a problem. |
Value
vec_ptype() and vec_ptype_common() return a prototype
(a size-0 vector)
vec_ptype()
vec_ptype() returns size 0 vectors potentially
containing attributes but no data. Generally, this is just
vec_slice(x, 0L), but some inputs require special
handling.
While you can't slice
NULL, the prototype ofNULLis itself. This is because we treatNULLas an identity value in thevec_ptype2()monoid.The prototype of logical vectors that only contain missing values is the special unspecified type, which can be coerced to any other 1d type. This allows bare
NAs to represent missing values for any 1d vector type.
See internal-faq-ptype2-identity for more information about identity values.
vec_ptype() is a performance generic. It is not necessary to implement it
because the default method will work for any vctrs type. However the default
method builds around other vctrs primitives like vec_slice() which incurs
performance costs. If your class has a static prototype, you might consider
implementing a custom vec_ptype() method that returns a constant. This will
improve the performance of your class in many cases (common type imputation in particular).
Because it may contain unspecified vectors, the prototype returned
by vec_ptype() is said to be unfinalised. Call
vec_ptype_finalise() to finalise it. Commonly you will need the
finalised prototype as returned by vec_slice(x, 0L).
vec_ptype_common()
vec_ptype_common() first finds the prototype of each input, then
successively calls vec_ptype2() to find a common type. It returns
a finalised prototype.
Dependencies of vec_ptype()
-
vec_slice()for returning an empty slice
Dependencies of vec_ptype_common()
Examples
# Unknown types ------------------------------------------
vec_ptype_show()
vec_ptype_show(NA)
vec_ptype_show(NULL)
# Vectors ------------------------------------------------
vec_ptype_show(1:10)
vec_ptype_show(letters)
vec_ptype_show(TRUE)
vec_ptype_show(Sys.Date())
vec_ptype_show(Sys.time())
vec_ptype_show(factor("a"))
vec_ptype_show(ordered("a"))
# Matrices -----------------------------------------------
# The prototype of a matrix includes the number of columns
vec_ptype_show(array(1, dim = c(1, 2)))
vec_ptype_show(array("x", dim = c(1, 2)))
# Data frames --------------------------------------------
# The prototype of a data frame includes the prototype of
# every column
vec_ptype_show(iris)
# The prototype of multiple data frames includes the prototype
# of every column that in any data frame
vec_ptype_show(
data.frame(x = TRUE),
data.frame(y = 2),
data.frame(z = "a")
)