From 1a50623699414715b96fccfa0db779cdb15234fb Mon Sep 17 00:00:00 2001 From: "Zane (She/They)" <55933131+PythonCoderUnicorn@users.noreply.github.com> Date: Mon, 9 May 2022 20:06:18 -0600 Subject: [PATCH] read_tsv() not csv --- data/2022/2022-05-10/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/2022/2022-05-10/readme.md b/data/2022/2022-05-10/readme.md index 5c86a090c..7a43215f6 100644 --- a/data/2022/2022-05-10/readme.md +++ b/data/2022/2022-05-10/readme.md @@ -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') ```