Skip to content

Instantly share code, notes, and snippets.

@Torvaney
Last active July 23, 2018 13:43
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 Torvaney/fb1c6146feb33c260a850010c86c78a9 to your computer and use it in GitHub Desktop.
Save Torvaney/fb1c6146feb33c260a850010c86c78a9 to your computer and use it in GitHub Desktop.
to_clipboard <- function(data) {
clip <- pipe("pbcopy", "w")
write.table(data, file = clip, row.names = FALSE)
close(clip)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment