pmApi2df {pubmedR} | R Documentation |
Convert xml PubMed bibliographic data into a dataframe
Description
It converts PubMed data, downloaded using Entrez API, into a dataframe
Usage
pmApi2df(P, format = "bibliometrix")
Arguments
P |
is a list following the xml PubMed structure, downloaded using the function |
format |
is a character. If |
Value
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
See Also
Examples
# 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)
[Package pubmedR version 0.0.3 Index]