Skip to content

Commit 3a07f5c

Browse files
author
NIH\ravichandrans
committed
Minor changes with the library name
1 parent b136524 commit 3a07f5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

1-Tidyverse.Rmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,13 @@ Sometimes, there will be extra metadata at the top of a file, often preceded wit
237237

238238
```{r}
239239
# we want to skip this first line
240-
readLines("Data/WHO-2.csv")[1:3]
240+
readLines("Data/WHO-2.csv")[1:3] # base package
241241
242242
# ignore metadata row
243-
read_csv("Data/WHO-2.csv", comment = "#")
243+
readr::read_csv("Data/WHO-2.csv", comment = "#")
244244
245245
# this results in identical output, but we specify how many lines to skip
246-
read_csv("Data/WHO-2.csv", skip = 1)
246+
readr::read_csv("Data/WHO-2.csv", skip = 1)
247247
```
248248

249249
## <a name="eeImport"></a>Exercises

0 commit comments

Comments
 (0)