Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. to_clipboard <- function(data) {
  2. clip <- pipe("pbcopy", "w")
  3. write.table(data, file = clip)
  4. close(clip)
  5. }
Add Comment
Please, Sign In to add comment