Skip to content

Commit

Permalink
Lazyness -> Laziness
Browse files Browse the repository at this point in the history
  • Loading branch information
lindbrook committed Feb 6, 2015
1 parent 36fa89e commit 0f3bf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/databases.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ summarise(flights_sqlite, delay = mean(dep_time))

The most important difference is that the expressions in `select()`, `filter()`, `arrange()`, `mutate()`, and `summarise()` are translated into SQL so they can be run on the database. This translation is almost perfect for the most common operations but there are some limitations, which you'll learn about later.

## Lazyness
## Laziness

When working with databases, dplyr tries to be as lazy as possible. It's lazy in two ways:

Expand Down

0 comments on commit 0f3bf75

Please sign in to comment.