R/cristin_units.R
CristinUnits.Rd
Create a tibble with information about (nested) units in Cristin (e.g., A University -> Faculties -> Departments -> Groups). The tibble can than be used to extract data for each unit from Cristin. Used by `CristinMonthly`
CristinUnits(
unit.key,
subunits = TRUE,
recursive = FALSE,
ancestors = FALSE,
lang = "en"
)
Unit to search for
Add subunits, Default: TRUE
Search for (nested) sub-units, Default: FALSE
Search for parent units, Default: FALSE
PARAM_DESCRIPTION, Default: `en`
A tibble containing information about selected units
Used with `CristinMontlhy` to create month-to-month bibliography of selected units
# \donttest{
# Find units for Inland University
CristinUnits("209.0.0.0") |>
dplyr::select(id, path2) |>
print(width = 80)
#> # A tibble: 8 × 2
#> id path2
#> <chr> <chr>
#> 1 209.0.0.0 Affiliated
#> 2 209.7.0.0 Administration
#> 3 209.2.0.0 Faculty of Applied Ecology, Agricultural Sciences and Biotechnology
#> 4 209.3.0.0 Faculty of Audiovisual Media and Creative Technologies
#> 5 209.5.0.0 Faculty of Education
#> 6 209.4.0.0 Faculty of Social and Health Sciences
#> 7 209.6.0.0 Inland School of Business and Social Sciences
#> 8 209.1.0.0 The Norwegian Film School
# }