From 2f99acb4771cac951f124884842d54bf0f69d3e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 26 Nov 2025 18:17:52 +0100 Subject: [PATCH] Update dplyr backends to include duckplyr Added duckplyr package to the list of dplyr backends. Does the description work in this context? --- content/packages/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/packages/index.md b/content/packages/index.md index 9224a6f94..3d1cda554 100644 --- a/content/packages/index.md +++ b/content/packages/index.md @@ -58,10 +58,11 @@ In addition to [tidyr](https://tidyr.tidyverse.org), [dplyr](https://dplyr.tidyv ### dplyr backends -There are also two packages that allow you to interface with different backends using the same dplyr syntax: +There are also three packages that allow you to interface with different backends using the same dplyr syntax: * [dbplyr](https://dbplyr.tidyverse.org) allows you to use remote database tables by converting dplyr code into SQL. * [dtplyr](https://dtplyr.tidyverse.org) provides a [data.table](http://r-datatable.com) backend by automatically translating to the equivalent, but usually much faster, data.table code. +* [duckplyr](https://duckplyr.tidyverse.org) allows fast processing of data frames and larger-than-memory data via DuckDB, with automatic fallback to dplyr if no translation is possible. ## Program