From 6f301c351b21bbb4def6cccb4d258533fe52aac6 Mon Sep 17 00:00:00 2001 From: S'busiso Mkhondwane Date: Mon, 1 Aug 2016 13:50:40 +0200 Subject: [PATCH] Update import.Rmd (#215) typo --- import.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: