Skip to content

Commit

Permalink
Add note about dbplyr under Related Work in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Cook committed Jan 20, 2020
1 parent 472f92c commit 84e6cbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,5 @@ show_dplyr(
## Related Work

The **sqldf** package ([CRAN](https://cran.r-project.org/package=sqldf), [GitHub](https://github.com/ggrothendieck/sqldf)) runs SQL queries on R data frames by transparently setting up a database, loading data from R data frames into the database, running SQL queries in the database, and returning results as R data frames.

The **[dbplyr](https://dbplyr.tidyverse.org)** package ([CRAN](https://cran.r-project.org/package=dbplyr), [GitHub](https://github.com/tidyverse/dbplyr)) is like tidyquery in reverse: it converts dplyr code into SQL, allowing you to use dplyr to work with data in a database.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,3 +182,9 @@ The **sqldf** package ([CRAN](https://cran.r-project.org/package=sqldf),
data frames by transparently setting up a database, loading data from R
data frames into the database, running SQL queries in the database, and
returning results as R data frames.

The **[dbplyr](https://dbplyr.tidyverse.org)** package
([CRAN](https://cran.r-project.org/package=dbplyr),
[GitHub](https://github.com/tidyverse/dbplyr)) is like tidyquery in
reverse: it converts dplyr code into SQL, allowing you to use dplyr to
work with data in a database.

0 comments on commit 84e6cbe

Please sign in to comment.