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 includes ADSL and ADAE, 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 and ADAE are the only datasets in teal_data, this should produce the same result:
data_extract_spec(
dataname = delayed_datasets("all"),
...
)
Code of Conduct
Contribution Guidelines
Security Policy
Feature description
I would like to be able to specify a
delayed_data_extract_specfor all datasets contained in theteal_dataobject, before I have access to theteal_data. I want soemthing similar tofirst_choicethat will resolve the datasets in the app.teal_dataincludesADSLandADAE, thisshould resolve to this
ADSLandADAEare the only datasets inteal_data, this should produce the same result:Code of Conduct
Contribution Guidelines
Security Policy