View source: R/c14_date_list_write_c14.R
write_c14 | R Documentation |
write c14_date_lists to files
write_c14(x, format = c("csv"), ...)
## Default S3 method:
write_c14(x, format = c("csv"), ...)
## S3 method for class 'c14_date_list'
write_c14(x, format = c("csv"), ...)
x |
an object of class c14_date_list |
format |
the output format: 'csv' (default) or 'xlsx'.
'csv' calls |
... |
passed to the actual writing functions |
csv_file <- tempfile(fileext = ".csv")
write_c14(
example_c14_date_list,
format = "csv",
file = csv_file
)
xlsx_file <- tempfile(fileext = ".xlsx")
write_c14(
example_c14_date_list,
format = "xlsx",
path = xlsx_file,
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.