diff --git a/import.Rmd b/import.Rmd index 2078de9..14569f1 100644 --- a/import.Rmd +++ b/import.Rmd @@ -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: