Description Usage Arguments Examples
This function wraps around write.table
to push a data frame to
clipboard. It is pipable. Please note that large data.frames will cause the
clipboard to crash.
1 2 3 4 5 6 7 8 | toClipboard(
x,
file = "clipboard",
sep = "\t",
row.names = FALSE,
na = "",
...
)
|
x |
the object to be written, preferably a matrix or data frame.
If not, it is attempted to coerce |
file |
either a character string naming a file or a connection
open for writing. |
sep |
the field separator string. Values within each row of
|
row.names |
either a logical value indicating whether the row
names of |
na |
the string to use for missing values in the data. |
... |
other parameters passed to write.table |
1 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.