map_to_char | R Documentation |
format a map.
map_to_char(mp, ..., sep = " ", assignment = "=", quote_fn = base::shQuote)
mp |
named vector or list |
... |
not used, foce later arguments to bind by name. |
sep |
separator suffix, what to put after commas |
assignment |
assignment string |
quote_fn |
string quoting function |
character formatted representation
dput
, capture.output
cat(map_to_char(c('a' = 'b', 'c' = 'd')))
cat(map_to_char(c('a' = 'b', 'd', 'e' = 'f')))
cat(map_to_char(c('a' = 'b', 'd' = NA, 'e' = 'f')))
cat(map_to_char(c(1, NA, 2)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.