Skip to content

Commit

Permalink
Mention duckplyr in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Oct 18, 2023
1 parent 7374271 commit 5003583
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ In addition to data frames/tibbles, dplyr makes working with other computational
- [dbplyr](https://dbplyr.tidyverse.org/) for data stored in a relational
database. Translates your dplyr code to SQL.

- [duckplyr](https://duckdblabs.github.io/duckplyr/) for using [duckdb](https://duckdb.org) on large, in-memory datasets with zero extra copies. Translates your dplyr code to high performance duckdb queries with an automatic R fallback when translation isn't possible.

- [duckdb](https://duckdb.org/docs/api/r) for large datasets that are
still small enough to fit on your computer.

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ alternative backends:
- [dbplyr](https://dbplyr.tidyverse.org/) for data stored in a
relational database. Translates your dplyr code to SQL.

- [duckplyr](https://duckdblabs.github.io/duckplyr/) for using
[duckdb](https://duckdb.org) on large, in-memory datasets with zero
extra copies. Translates your dplyr code to high performance duckdb
queries with an automatic R fallback when translation isn’t possible.

- [duckdb](https://duckdb.org/docs/api/r) for large datasets that are
still small enough to fit on your computer.

Expand Down

0 comments on commit 5003583

Please sign in to comment.