This returns an object which contains data for an individual researcher at KTH
abm_private_data(unit_code)
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).
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')
} # }