catlist | R Documentation |
Print a list
(usually named) as a character vector or string.
catlist(x, sep = " = ", collapse = ", ")
x |
a list to concatenate |
sep , collapse |
passed to |
iprint
l <- list(a = 1:3, b = 2, '4')
catlist(l)
catlist(l, collapse = FALSE)
cat(catlist(par()[1:5], sep = ':\n ', collapse = '\n'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.