Open
Description
Feature description
I would like to be able to specify a delayed_data_extract_spec
for all datasets contained in the teal_data
object, before I have access to the teal_data
. I want soemthing similar to first_choice
that will resolve the datasets in the app.
- If
teal_data
includesADSL
andADAE
, this
data_extract_spec(
dataname = delayed_datasets(c("ADSL", "ADAE")),
...
)
should resolve to this
list(
data_extract_spec(
dataname = "ADSL",
...
),
data_extract_spec(
dataname = "ADAE,
...
)
)
- If
ADSL
andADAE
are the only datasets inteal_data
, this should produce the same result:
data_extract_spec(
dataname = delayed_datasets("all"),
...
)
Code of Conduct
- I agree to follow this project's Code of Conduct.
Contribution Guidelines
- I agree to follow this project's Contribution Guidelines.
Security Policy
- I agree to follow this project's Security Policy.