| cc | R Documentation | 
Shorthand function for paste. Author: Bryce Chamberlain.
cc(..., sep = "")
| ... | Arguments to be passed to paste0. Typcially a list of vectors or values to be concatenated. | 
| sep | (Optional) Separator between concatenated items. | 
Vector of pasted/concatenated values.
cc( 1, 2, 4 )
x = data.frame( c1 = c( 1, 2, 4 ), c2 = c( 3, 5, 7 ) )
cc( x$c1, x$c2 )
cc( x$c1, x$c2, sep = '-' )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.