enframe {tidytable} | R Documentation |
Convert a vector to a data.table/tidytable
Description
Converts named and unnamed vectors to a data.table/tidytable.
Usage
enframe(x, name = "name", value = "value")
Arguments
x |
A vector |
name |
Name of the column that stores the names. If |
value |
Name of the column that stores the values. |
Examples
vec <- 1:3
names(vec) <- letters[1:3]
enframe(vec)
[Package tidytable version 0.11.1 Index]