Skip to content

Commit

Permalink
Merge pull request #437 from PythonCoderUnicorn/patch-1
Browse files Browse the repository at this point in the history
read_tsv()  not csv
  • Loading branch information
jthomasmock authored May 10, 2022
2 parents 890b5d7 + 1a50623 commit 6043c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/2022/2022-05-10/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ nyt_titles <- tuesdata$nyt_titles
# Or read in the data manually
nyt_titles <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_titles.tsv')
nyt_full <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_full.tsv')
nyt_titles <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_titles.tsv')
nyt_full <- readr::read_tsv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-05-10/nyt_full.tsv')
```

Expand Down

0 comments on commit 6043c6f

Please sign in to comment.