This returns an object which contains data for an individual researcher at KTH

abm_private_data(unit_code)

Arguments

unit_code

the kthid for the researcher

Value

a list with two slots - "meta" for organizational unit metadata info and "units" with a named list of results (set of 5 different tibbles for the tables and also the publication list).

Examples

if (FALSE) { # \dontrun{

# get all public data from the ABM
private <- abm_private_data('u1kzf1xh')

# get table 1 for the kthid
private |> pluck('units', 'u1kzf1xh', 1)

# get publications for the kthid
private |> pluck('units', 'u1kzf1xh', 'publications')

} # }