View source: R/stringify_vec.R
stringify_vec | R Documentation |
Converts a vector (named or unnamed) into a single string representation.
stringify_vec(vec, item_sep = ", ", name_sep = " = ", fmt = NULL)
vec |
The vector to be converted into a character string. |
item_sep |
The character separator to use between vector elements when converting the vector into a string. |
name_sep |
The character separator to use between names and values when converting the vector into a string (if names exist). |
fmt |
The format specification for the vector values (as a string), or
NULL to use defaults (which would be as returned by |
A single character string representation of the vector.
stringify_vec(c(1, 2, 3)) stringify_vec(c(one = 1, two = 2, three = 3)) stringify_vec(c(alpha = 1, bravo = 2, charlie = 3), fmt = "%3.1f")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.