| concepts2df | R Documentation |
It converts bibliographic collection of concepts' records gathered from OpenAlex database https://openalex.org/ into data frame.
The function converts a list of concepts' records obtained using oa_request into a data frame/tibble.
concepts2df( data, verbose = TRUE, pb = if (verbose) oa_progress(length(data)) else NULL )
data |
List. Output of |
verbose |
Logical. If TRUE, print information about the dataframe conversion process. Defaults to TRUE. |
pb |
Progress bar object. If verbose, computed from 'oa_progress'. NULL otherwise. |
a data.frame.
For more extensive information about OpenAlex API, please visit: <https://docs.openalex.org>
## Not run: # Query to search information about all Italian educational institutions query_inst <- oa_query( entity = "concepts", display_name.search = "electrodynamics" ) res <- oa_request( query_url = query_inst, count_only = FALSE, verbose = FALSE ) df <- oa2df(res, entity = "concepts") df ## End(Not run)