Update Chp 8 exercise on quote arg of read_csv(). Close #696. (#806)

This commit is contained in:
John Blischak 2020-01-15 13:26:04 -05:00 committed by Hadley Wickham
parent 08306263da
commit 8784e41d91
1 changed files with 2 additions and 3 deletions

View File

@ -120,9 +120,8 @@ If you've used R before, you might wonder why we're not using `read.csv()`. Ther
1. Sometimes strings in a CSV file contain commas. To prevent them from
causing problems they need to be surrounded by a quoting character, like
`"` or `'`. By convention, `read_csv()` assumes that the quoting
character will be `"`, and if you want to change it you'll need to
use `read_delim()` instead. What arguments do you need to specify
`"` or `'`. By default, `read_csv()` assumes that the quoting
character will be `"`. What argument to `read_csv()` do you need to specify
to read the following text into a data frame?
```{r, eval = FALSE}