Final comments from whole game (#1347)

This commit is contained in:
Hadley Wickham
2023-03-08 10:40:53 -06:00
committed by GitHub
parent 08c3cdf6f2
commit 1e488f384f
3 changed files with 5 additions and 12 deletions

View File

@@ -434,9 +434,7 @@ sales_files
## Writing to a file {#sec-writing-to-a-file}
readr also comes with two useful functions for writing data back to disk: `write_csv()` and `write_tsv()`.
Both functions increase the chances of the output file being read back in correctly by using the standard UTF-8 encoding for strings and ISO8601 format for date-times.
The most important arguments are `x` (the data frame to save), and `file` (the location to save it).
The most important arguments to these functions are `x` (the data frame to save) and `file` (the location to save it).
You can also specify how missing values are written with `na`, and if you want to `append` to an existing file.
```{r}