if (FALSE) {
#Search articles for 'Gabi-Kat'
my.data <- epmc_search(query='Gabi-Kat')
#Get article metadata by DOI
my.data <- epmc_search(query = 'DOI:10.1007/bf00197367')
#Get article metadata by PubMed ID (PMID)
my.data <- epmc_search(query = 'EXT_ID:22246381')
#Get only PLOS Genetics article with EMBL database references
my.data <- epmc_search(query = 'ISSN:1553-7404 HAS_EMBL:y')
#Limit search to 250 PLOS Genetics articles
my.data <- epmc_search(query = 'ISSN:1553-7404', limit = 250)
# exclude MeSH synonyms in search
my.data <- epmc_search(query = 'aspirin', synonym = FALSE)
# get 100 most cited atricles from PLOS ONE publsihed in 2014
epmc_search(query = '(ISSN:1932-6203) AND FIRST_PDATE:2014', sort = 'cited')
# print number of records found
attr(my.data, "hit_count")
# change output
}
Run the code above in your browser using DataLab