Skip to content

Instantly share code, notes, and snippets.

@pgstevenson
Created September 4, 2019 03:29
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/302a1a1012897e3388cea7bdc7414b84 to your computer and use it in GitHub Desktop.
Save pgstevenson/302a1a1012897e3388cea7bdc7414b84 to your computer and use it in GitHub Desktop.
Function to paste data from clipboard into R
paste_clip <- function(header = TRUE, ...) {
read.table("clipboard", sep = "\t", header = header, ...)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment