name_vec | R Documentation |
Create a named vector in a single line without either manually defining names at the outset (e.g., c("name_1" = 1, "name_2" = 2, ...
) or spending a second line to assign names to an existing vector (e.g., names(vec) <- c("name_1", "name_2", ...)
). Useful in cases where you need a named vector within a pipe and don't want to break into two pipes just to define a named vector (see tidyr::separate_wider_position
)
name_vec(content = NULL, name = NULL)
content |
(vector) content of vector |
name |
(vector) names to assign to vector (must be in same order) |
(named vector) vector with contents from the content
argument and names from the name
argument
# Create a named vector
name_vec(content = 1:10, name = paste0("text_", 1:10))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.