Skip to content

Instantly share code, notes, and snippets.

@pgstevenson
Created September 4, 2019 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgstevenson/e22053b7cdb5935f25e6fe6716fad449 to your computer and use it in GitHub Desktop.
Save pgstevenson/e22053b7cdb5935f25e6fe6716fad449 to your computer and use it in GitHub Desktop.
Function to copy data from R to the clipboard
copy_clip <- function(x, row.names = FALSE, col.names = TRUE, ...) {
write.table(x, "clipboard", sep = "\t", row.names = row.names, col.names = col.names, ...)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment