Created
January 11, 2018 21:41
-
-
Save mages/128a64e5584a9b579523c8ddf2e8d657 to your computer and use it in GitHub Desktop.
Mac: Copy R data frame to clipboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
snip <- function(input) { | |
pb <- pipe("pbcopy", "w") | |
write.table(input, sep="\t", file=pb, row.names = FALSE) | |
close(pb) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment