SQL, not HTML (#1034)

This commit is contained in:
Jennifer (Jenny) Bryan 2022-05-28 13:38:31 -07:00 committed by GitHub
parent 8771040c0a
commit b67ac1dbe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}