## Load App Data ----
app_data <<- get_data()
## Reactives ----
rv <- list()
rv$year <- 2001
rv$university <- "Adams State University"
## Code to Test ----
unis <- app_data |>
dplyr::filter(year == rv$year) |>
dplyr::pull(institutionname) |>
unique() |>
sort()
program <- app_data |>
dplyr::filter(
year == rv$year,
institutionname %in% rv$university
) |>
dplyr::pull(programname) |>
unique() |>
sort()
## Reactive Data ----
ad <- app_data |>
dplyr::filter(
year == rv$year
)
ad <- ad |>
dplyr::filter(
institutionname %in% rv$university
)
ad <- ad |>
dplyr::filter(
programname %in% rv$program
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.