Update import.Rmd (#215)

typo
This commit is contained in:
S'busiso Mkhondwane 2016-08-01 13:50:40 +02:00 committed by Hadley Wickham
parent 885352d646
commit 6f301c351b
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ The first argument to `read_csv()` is the most important: it's the path to the f
heights <- read_csv("data/heights.csv")
```
When you run `read_csv()` it prints how out a column specification that gives the name and type of each column. That's an important part of readr, which we'll come back to in [parsing a file].
When you run `read_csv()` it prints out a column specification that gives the name and type of each column. That's an important part of readr, which we'll come back to in [parsing a file].
You can also supply an inline csv file. This is useful for experimenting and creating reproducible examples: