Convert OpenAlex collection of institutions' records from list format to data frame
Source:R/oa2df.R
institutions2df.Rd
It converts bibliographic collection of institutions' records gathered from OpenAlex database https://openalex.org/ into data frame.
The function converts a list of institutions' records obtained using oa_request
into a data frame/tibble.
Arguments
- data
List. Output of
oa_request
.- verbose
Logical. If TRUE, print information on querying process. Default to
verbose = FALSE
.
Value
a data.frame.
For more extensive information about OpenAlex API, please visit: <https://docs.openalex.org>
Examples
if (FALSE) {
# Query to search information about all Italian educational institutions
query_inst <- oa_query(
entity = "institutions",
country_code = "it",
type = "education"
)
res <- oa_request(
query_url = query_inst,
count_only = FALSE,
verbose = FALSE
)
oa2df(res, entity = "institutions")
}
# @export