named_vec_to_df | R Documentation |
When running a vapply
function and each element returns a single value,
the return value is a named vector. This function can be used to convert
that return value into a data.frame. Similar to lol_to_df
,
but because the output format from vapply
is different depending on
whether a single value or multiple values are returned, a different function
needs to be used.
named_vec_to_df(v, name, rowname = "well")
v |
Named vector that is a result of a vapply |
name |
Column name to use for the name of each element |
rowname |
Column name to use for the values of the rownames |
lol_to_df
vapply(c("a", "b", "c"),
toupper,
character(1)) %>%
named_vec_to_df("capital", "letter")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.