From b67ac1dbe8dca882f3573dfb7f75578dc4875606 Mon Sep 17 00:00:00 2001 From: "Jennifer (Jenny) Bryan" Date: Sat, 28 May 2022 13:38:31 -0700 Subject: [PATCH] SQL, not HTML (#1034) --- import-databases.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import-databases.qmd b/import-databases.qmd index 807f058..bf4585b 100644 --- a/import-databases.qmd +++ b/import-databases.qmd @@ -531,7 +531,7 @@ So far we've focussed on the big picture of how dplyr verbs are translated in to Now we're going to zoom in a little and talk about how individual R functions are translated, i.e. what happens when you use `mean(x)` in a `summarize()`? The translation is certainly not perfect, and there are many R functions that aren't converted to SQL, but dbplyr does a surprisingly good job covering the functions that you'll use most of the time. -To explore these translations I'm going to make a couple of little helper functions that run a `summarise()` or `mutate()` and return the generated HTML. +To explore these translations I'm going to make a couple of little helper functions that run a `summarise()` or `mutate()` and return the generated SQL. That'll make it a little easier to explore some variations. ```{r}