View source: R/write_dataset.R
write_dataset | R Documentation |
write_dataset
write_dataset(
dataset,
path,
conn = cached_connection(),
format = c("parquet", "csv"),
partitioning = dplyr::group_vars(dataset),
overwrite = TRUE,
...
)
dataset |
a remote tbl object from |
path |
a local file path or S3 path with write credentials |
conn |
duckdbfs database connection |
format |
export format |
partitioning |
names of columns to use as partition variables |
overwrite |
allow overwriting of existing files? |
... |
additional arguments to |
Returns the path, invisibly.
write_dataset(mtcars, tempfile())
write_dataset(mtcars, tempdir())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.