Description Usage Arguments Value Author(s) Examples
Copies data frame to clipboard. Usually used when you want to copy data frame to Excel. Just run function with desired df and press Paste or CTRL + V to paste it in the desired place. This function is like pressing CTRL + C on a dataframe. It should work on MAC and Windows.
1 | write_excel(x, row.names = FALSE, col.names = TRUE, ...)
|
x |
Data frame to be copied. |
row.names |
(boolean) Should row names be copied? Default: FALSE |
col.names |
(boolean) should column names be copied? Default: TRUE |
... |
parameters forwarded to write.table |
None
Elio Bartoš
1 2 | x = data.frame(var1 = c(0, 1), var2 = c(3, 4))
write_excel(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.