Skip to content

Instantly share code, notes, and snippets.

View kprybol's full-sized avatar

Kevin Prybol kprybol

  • The Wound Pros
  • Raleigh, NC/ Los Angeles, CA
View GitHub Profile
@kprybol
kprybol / clipboard.R
Created December 30, 2015 17:16
Copy R data.frame to the clipboard
cb <- function(df, sep="\t", dec=",", max.size=(200*1000)){
# Copy a data.frame to clipboard
write.table(df, paste0("clipboard-", formatC(max.size, format="f", digits=0)), sep=sep, row.names=FALSE, dec=dec)
}