
Last chance! 50% off unlimited learning
Sale ends in
A data.frame
data.frame()
is a list with "row.names" attribute. Each
element of the list must be named, and of the same length. These functions
help the base data.frame classes fit in to the vctrs type system by
providing constructors, coercion functions, and casting functions.
new_data_frame(x = list(), n = NULL, ..., class = character())# S3 method for data.frame
vec_type2(x, y)
# S3 method for data.frame
vec_cast(x, to)
A named list of equal-length vectors. The lengths are not checked; it is responsibility of the caller to make sure they are equal.
Number of rows. If NULL
, will be computed from the length of
the first element of x
.
Additional arguments for creating subclasses.
# NOT RUN {
new_data_frame(list(x = 1:10, y = 10:1))
# }
Run the code above in your browser using DataLab