template_dataset | R Documentation |
This function provides access to a dataset associated with a specific template. It retrieves the dataset stored in the database folder for the given template and layer, using the schema defined in the template configuration.
template_dataset(template, layer = NULL)
template |
The template identifier or template object. This specifies the dataset to retrieve. |
layer |
The layer of the dataset to access (e.g., "input" or "staging"). If |
The template_dataset()
function is a generic function that dispatches to specific methods
based on the type of the template
argument. It retrieves the dataset by resolving the template using
template_retrieve()
if the input is a template identifier.
An Arrow dataset object representing the data for the specified template and layer.
## Not run:
# Access the dataset for the "b3-reference-rates" template
ds <- template_dataset("b3-reference-rates")
# Access the dataset for the "b3-reference-rates" template in the staging layer
ds <- template_dataset("b3-reference-rates", layer = "staging")
# Query the dataset
ds |>
dplyr::filter(refdate > as.Date("2023-01-01")) |>
dplyr::collect()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.