parent
08306263da
commit
8784e41d91
|
@ -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
|
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
|
causing problems they need to be surrounded by a quoting character, like
|
||||||
`"` or `'`. By convention, `read_csv()` assumes that the quoting
|
`"` or `'`. By default, `read_csv()` assumes that the quoting
|
||||||
character will be `"`, and if you want to change it you'll need to
|
character will be `"`. What argument to `read_csv()` do you need to specify
|
||||||
use `read_delim()` instead. What arguments do you need to specify
|
|
||||||
to read the following text into a data frame?
|
to read the following text into a data frame?
|
||||||
|
|
||||||
```{r, eval = FALSE}
|
```{r, eval = FALSE}
|
||||||
|
|
Loading…
Reference in New Issue