conc | R Documentation |
To copy an object to the clipboard.
conc(x)
x |
An object |
To mimic ctrl + c. Currently defined as conc <- function(x)
write.table(x, "clipboard-128", sep="\t", dec=",", col.names=NA, row.names =
if (is.ts(x)) gsub('\.',",",as.character(time(x))) else TRUE)
write.table
## Not run:
x <- data.frame(a = c(1,2), b = c(3,4))
conc(x)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.