vec_ptype_full {vctrs} | R Documentation |
vec_ptype_full()
displays the full type of the vector. vec_ptype_abbr()
provides an abbreviated summary suitable for use in a column heading.
vec_ptype_full(x, ...) vec_ptype_abbr(x, ...)
x |
A vector. |
... |
These dots are for future extensions and must be empty. |
A string.
The default method for vec_ptype_full()
uses the first element of the
class vector. Override this method if your class has parameters that should
be prominently displayed.
The default method for vec_ptype_abbr()
abbreviate()
s vec_ptype_full()
to 8 characters. You should almost always override, aiming for 4-6
characters where possible.
cat(vec_ptype_full(1:10)) cat(vec_ptype_full(iris)) cat(vec_ptype_abbr(1:10))