| collect.tbl_az | R Documentation |
dplyr::collect() method for tables created by tbl_delta() and
tbl_parquet(). Verifies that the backing DuckDB connection is still open
and that the azure extension is loaded before the query is materialised,
then defers to the underlying dbplyr method.
## S3 method for class 'tbl_az'
collect(x, ...)
x |
A |
... |
Passed on to the next |
A tibble::tibble() with the collected rows.
## Not run:
# Requires a live Azure account, credentials, and network access.
conn <- az_conn()
tbl_delta(conn, "abfss://container@account/path/sales") |>
dplyr::collect()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.