duckdb-r
duckdb-r copied to clipboard
The duckdb R package
https://github.com/hannes/duckdb-rfuns/pull/95
AFAIR it is allowed to use two processor cores on CRAN when installing a package. Would it be possible to leverage this and compile duckdb in parallel? That would cut...
Hello, Duckdb-r has a dbplyr-like translation for the n_distinct() function that leverages the row() function in duckdb, opening-up more flexibilty. See here for the discussion : https://github.com/duckdb/duckdb-r/issues/110 And here for...
In the example below we have a string containing two semicolon-separated SQL statements. If the ? for the prepared statement is in the second SQL statement then it works but...
Hi, I've been juggling with duckdb on various computers and learned just recently that duckdb disk files are not compatible between package versions. As an example, *.duckdb file created under...
Thank you very much for the package. I followed your method to deal with the "Non-API calls" issue for `cpp11` (duckdb/duckdb-r#145) and uploaded the package to CRAN. And CRAN now...
Hello, `duckdb` and arrow seem to write parquet files at roughly the same speed until the data gets to about 10+ GB, at which point duckdb is about an order...
Should register the data frame instead of copying it? ~~Perhaps at the level of `dbWriteTable(temporary = TRUE)` ?~~ I now think `dbWriteTable()` should write as asked, but `db_copy_to()` could do...
When enabling [`progress bar`](https://duckdb.org/docs/configuration/overview#:~:text=true-,enable_progress_bar,-Enables%20the%20progress) configuration option + `enable_progress_bar_print`, R does not show progress bar. Python version of duckdb client does show the progress. Below is code for both R and...