if (FALSE) {
# Query to search information about all authors affiliated to the University of Naples Federico II
# which have authored at least 100 publications:
# University of Naples Federico II is associated to the OpenAlex id I71267560.
query_author <- oa_query(
identifier = NULL,
entity = "authors",
last_known_institutions.id = "I71267560",
works_count = ">500"
)
res <- oa_request(
query_url = query_author,
count_only = FALSE,
verbose = FALSE
)
df <- oa2df(res, entity = "authors")
df
}
Run the code above in your browser using DataLab