From 295dfb1d1c7ecd2812a56a5d7e3a6ed1ca27d014 Mon Sep 17 00:00:00 2001 From: Danielle Navarro Date: Tue, 21 Jun 2022 04:18:37 +1000 Subject: [PATCH] links from nyc taxi slide to data page --- _site/search.json | 6 +++--- _site/sitemap.xml | 2 +- _site/slides.html | 10 +++++----- slides.qmd | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/_site/search.json b/_site/search.json index da94bce..b2e890d 100644 --- a/_site/search.json +++ b/_site/search.json @@ -683,7 +683,7 @@ "href": "slides.html#selective-reads-are-faster", "title": "Larger-Than-Memory Data Workflows with Apache Arrow", "section": "Selective reads are faster", - "text": "Selective reads are faster\n\ntic()\nparquet_file |>\n read_parquet() |>\n invisible() # suppress printing\ntoc()\n\n0.524 sec elapsed\n\n\n\n\ntic()\nparquet_file |>\n read_parquet(col_select = matches(\"pickup\")) |>\n invisible()\ntoc()\n\n0.113 sec elapsed" + "text": "Selective reads are faster\n\ntic()\nparquet_file |>\n read_parquet() |>\n invisible() # suppress printing\ntoc()\n\n0.528 sec elapsed\n\n\n\n\ntic()\nparquet_file |>\n read_parquet(col_select = matches(\"pickup\")) |>\n invisible()\ntoc()\n\n0.143 sec elapsed" }, { "objectID": "slides.html#nyc-taxi-data-files", @@ -697,7 +697,7 @@ "href": "slides.html#partition-structure-matters", "title": "Larger-Than-Memory Data Workflows with Apache Arrow", "section": "Partition structure matters", - "text": "Partition structure matters\n\ntic()\nnyc_taxi |>\n filter(year == 2016, month == 9) |>\n nrow() \n\n[1] 10116018\n\ntoc()\n\n0.022 sec elapsed" + "text": "Partition structure matters\n\ntic()\nnyc_taxi |>\n filter(year == 2016, month == 9) |>\n nrow() \n\n[1] 10116018\n\ntoc()\n\n0.016 sec elapsed" }, { "objectID": "slides.html#writing-datasets", @@ -1166,6 +1166,6 @@ "href": "slides.html#partition-structure-matters-1", "title": "Larger-Than-Memory Data Workflows with Apache Arrow", "section": "Partition structure matters", - "text": "Partition structure matters\n\ntic()\nnyc_taxi |> \n filter(pickup_location_id == 138) |> \n nrow() \n\n[1] 10823589\n\ntoc()\n\n3.529 sec elapsed" + "text": "Partition structure matters\n\ntic()\nnyc_taxi |> \n filter(pickup_location_id == 138) |> \n nrow() \n\n[1] 10823589\n\ntoc()\n\n2.952 sec elapsed" } ] \ No newline at end of file diff --git a/_site/sitemap.xml b/_site/sitemap.xml index 42bdcaa..3eabfb7 100644 --- a/_site/sitemap.xml +++ b/_site/sitemap.xml @@ -6,7 +6,7 @@ https://arrow-user2022.netlify.app/slides.html - 2022-06-20T07:02:52.075Z + 2022-06-20T18:17:43.203Z https://arrow-user2022.netlify.app/packages-and-data.html diff --git a/_site/slides.html b/_site/slides.html index 9c2910a..e7dc33e 100644 --- a/_site/slides.html +++ b/_site/slides.html @@ -467,7 +467,7 @@

Hello Arrow

Section 1: In which we dive straight into Arrow

-

Opening a data set

+

Opening a data set

nyc_taxi <- open_dataset("~/Datasets/nyc-taxi")
 nyc_taxi
@@ -1424,7 +1424,7 @@

Selective reads are faster

invisible() # suppress printing toc()
-
0.524 sec elapsed
+
0.528 sec elapsed


@@ -1435,7 +1435,7 @@

Selective reads are faster

invisible() toc()
-
0.113 sec elapsed
+
0.143 sec elapsed
@@ -1626,7 +1626,7 @@

Partition structure matters

toc()
-
0.022 sec elapsed
+
0.016 sec elapsed
@@ -1642,7 +1642,7 @@

Partition structure matters

toc()
-
3.529 sec elapsed
+
2.952 sec elapsed
diff --git a/slides.qmd b/slides.qmd index b728082..763b8db 100644 --- a/slides.qmd +++ b/slides.qmd @@ -94,7 +94,7 @@ library(sf) Section 1: In which we dive straight into Arrow -## Opening a data set +## Opening a [data set](packages-and-data.html#data) ```{r open-dataset} #| echo: true