Description Usage Arguments Value See Also Examples
It converts PubMed data, downloaded using Entrez API, into a dataframe
1 |
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
1 2 3 4 5 6 7 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.