# Get entire 'Core' table for the German Bundestag
deu_core <- get_core(legislature = "deu")
tibble::glimpse(deu_core)
# Get 'Core' table for 16th session of the German Bundestag
deu_core_subset <- dplyr::semi_join(x = deu_core,
y = dplyr::filter(get_political(legislature = "deu"),
session == 16),
by = "pageid")
tibble::glimpse(deu_core_subset)
Run the code above in your browser using DataLab