write_csv | R Documentation |
Write to a CSV file
write_csv(
input_data,
file,
prompt = FALSE,
signif = Inf,
digits = 15,
date_format = "%Y-%m-%d",
na = "",
eol = "\r\n",
row.names = FALSE,
quote = TRUE,
...,
verbose = getOption("verbose")
)
input_data |
data frame |
file |
filename |
prompt |
|
signif |
(optional) significant digits (default |
digits |
(optional) passed to |
na |
how to represent |
... |
further arguments to write.csv |
\code{input_data}, possibly modified. See Note for details.
In contrast to write.csv, row.names
is set to
FALSE
, so that an extra column will not be written.
If signif
is supplied, then the values that are written will be rounded.
It is these rounded values that are returned (invisibly, for chaining).
read_tbl
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.