# Get entire 'History' table for the Austrian Nationalrat
aut_history <- get_history(legislature = "aut")
tibble::glimpse(aut_history)
# Get 'History' table for NEOS party members of the Austrian Nationalrat
aut_history_subset <- dplyr::semi_join(x = aut_history,
y = dplyr::filter(get_political(legislature = "aut"),
party == "NEOS"),
by = "pageid")
tibble::glimpse(aut_history_subset)
Run the code above in your browser using DataLab