pmApi2df {pubmedR} | R Documentation |
It converts PubMed data, downloaded using Entrez API, into a dataframe
pmApi2df(P, format = "bibliometrix")
P |
is a list following the xml PubMed structure, downloaded using the function |
format |
is a character. If |
a dataframe containing bibliographic records.
To obtain a free access to NCBI API, please visit: https://www.ncbi.nlm.nih.gov/pmc/tools/developers/
To obtain more information about how to write a NCBI search query, please visit: https://pubmed.ncbi.nlm.nih.gov/help/#search-tags
# Example: Querying a collection of publications
query <- "bibliometric*[Title/Abstract] AND english[LA]
AND Journal Article[PT] AND 2000:2020[DP]"
D <- pmApiRequest(query = query, limit = 100, api_key = NULL)
M <- pmApi2df(D)