Description Usage Arguments Value Examples
Function to write dataframe to a delimited file (but only if it has changed).
1 | write_data(data, path, delim = "\t", silent = TRUE)
|
data |
A dataframe. |
path |
A file path. |
delim |
A delimiter. Default is tab delimited. |
silent |
Logical. |
Nothing.
1 2 | library(magrittr)
data.frame(x = c(NA, "A string"), y = 1:2) %>% write_data("my_data.tsv")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.