duckplyr icon indicating copy to clipboard operation
duckplyr copied to clipboard

Include example with flights data

Open hadley opened this issue 5 months ago • 0 comments

Maybe provide some helper function to get it:

base_url <- "https://blobs.duckdb.org/flight-data-partitioned/"
files <- paste0("Year=", 1987:2024, "/data_0.parquet")
for (dir in dirname(files)) dir.create(dir, showWarnings = FALSE)

out <- curl::multi_download(paste0(base_url, files), files, resume = TRUE)

And then show how you can easily work with a large data set.

hadley avatar Sep 13 '24 13:09 hadley