A convience wrapper for write.table that writes tab-seperated data to the Windows clipboard. Does not work in *nix.
| 1 2 3 4 5 6 7 8 9 | write.clip(
  x,
  size = "4096",
  sep = "\t",
  na = "",
  row.names = F,
  excel = F,
  ...
)
 | 
| x | an object to write | 
| size | the file size to use for the clipboard. Defaults to 4096 which is reasonably large. | 
| na | the string to replace NA values. Defaults to "". | 
| row.names | a logical value determining whether row names be written to the file. Defaults to FALSE. | 
| excel | a logical value determing whether Excel should be opened immediately after copying the data to the clipboard. | 
| ... | other arguments to pass to write.table() | 
| sepr | a string to seperate columns, passed to write.table as sep=sepr. Defaults to tab-seperated columns. | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.