Searches SCOPUS to get information about documents
on an author.
Note, author_list
returns a list of the entries from
author_search
,
but allows you to put in a name.
author_df(
au_id = NULL,
last_name = NULL,
first_name = NULL,
api_key = NULL,
verbose = TRUE,
all_author_info = FALSE,
http = "https://api.elsevier.com/content/search/scopus",
view = "COMPLETE",
count = 25,
general = TRUE,
scrub = FALSE,
headers = NULL,
...
)author_df_orig(..., general = FALSE)
author_list(
au_id = NULL,
last_name = NULL,
first_name = NULL,
api_key = NULL,
verbose = TRUE,
http = "https://api.elsevier.com/content/search/scopus",
view = "COMPLETE",
count = 25,
headers = NULL,
...
)
author_data(
...,
verbose = TRUE,
all_author_info = FALSE,
general = TRUE,
scrub = FALSE
)
List of entries from SCOPUS
Author ID number. Overrides any first/last name argument
last name of author
first name of author
Elsevier API key
Print diagnostic messages
Should all author info be recorded instead of that just to the author given
Address for scopus api
type of view to give, see https://dev.elsevier.com/documentation/ScopusSearchAPI.wadl
number of records to retrieve (below 25, see https://dev.elsevier.com/api_key_settings.html)
Should gen_entries_to_df
instead of the
way before version 0.5.10.9001
Should `scrub_identifier` be run on the identifier?
Headers passed to add_headers
,
passed to GET
Arguments to be passed to author_search
get_author_info
if (is_elsevier_authorized()) {
res = author_df(last_name = "Muschelli", first_name = "John",
verbose = FALSE)
}
Run the code above in your browser using DataLab