| load_dataset | R Documentation |
Dispatches to load_delta(), load_parquet(), load_csv(), or
load_json() based on format. Only arguments accepted by the target
function may be passed via ...; passing format-incompatible arguments
raises an error.
load_dataset(
conn,
url,
name,
format = c("delta", "parquet", "csv", "json"),
...
)
conn |
A DuckDB connection. |
url |
Character scalar. Azure Blob URL. |
name |
Character scalar. Name to register the dataset under in DuckDB. |
format |
One of |
... |
Passed to the selected loader. |
Invisibly returns conn.
## Not run:
# Requires a live Azure account, credentials, and network access.
conn <- az_conn()
load_dataset(
conn,
"abfss://container@account/path/sales",
name = "sales",
format = "delta"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.