Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Add data dir creation
  • Loading branch information
thisisnic authored Jul 8, 2024
1 parent c30b71f commit 2871c83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ This is the data we will use in the workshop. It's a good-sized, single CSV file

```{r}
options(timeout = 1800)
dir.create("data")
download.file(
url = "https://r4ds.s3.us-west-2.amazonaws.com/seattle-library-checkouts.csv",
destfile = "./data/seattle-library-checkouts.csv"
Expand All @@ -54,6 +55,7 @@ If you don't have time or disk space to download the 9Gb dataset (and still have

```{r}
options(timeout = 1800)
dir.create("data")
download.file(
url = "https://github.com/posit-conf-2023/arrow/releases/download/v0.1.0/seattle-library-checkouts-tiny.csv",
destfile = "./data/seattle-library-checkouts-tiny.csv"
Expand Down

0 comments on commit 2871c83

Please sign in to comment.