cvd_time_period_system_levels {cvdprevent} | R Documentation |
Time periods and system levels
Description
Returns all available time periods along with the systems levels included in each time period.
Usage
cvd_time_period_system_levels()
Details
CVD Prevent API documentation: Time period system levels
Value
tibble of time periods and associated system levels
See Also
Examples
# get a tibble of all periods and levels
periods_levels <- cvd_time_period_system_levels()
# see which levels are available for the latest period
periods_levels |>
dplyr::filter(TimePeriodID == max(TimePeriodID)) |>
dplyr::select(TimePeriodID, TimePeriodName, SystemLevelID, SystemLevelName)
[Package cvdprevent version 0.2.0 Index]