Number of citations of an article per year using PMIDs
1
0
Entering edit mode
5.5 years ago

I want to find out how to get number of citations of an article per year using PMIDs

eutils pmids citation count yearly • 2.0k views
ADD COMMENT
0
Entering edit mode

Have a try of the pubmedy add-in in chrome and you will see the number of citations as

enter image description here

ADD REPLY
2
Entering edit mode
5.5 years ago
h.mon 35k

For example, to find yearly citations of article with PMID 15926897:

esearch -db pubmed -query 15926897 \
  | elink -name pubmed_pmc_refs -target pmc \
  | efetch -format docsum \
  | xtract -pattern DocumentSummary -element PubDate \
  | cut -f1 -d" " | sort | uniq -c

Results in:

  6 2006
  3 2008
  3 2009
  1 2011
  3 2012
  3 2013
  1 2015
  3 2016
  3 2017
  2 2018
  
ADD COMMENT
0
Entering edit mode

please is there an api equivalent of this code. I want to be able to generate this using a single api call ie. https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&linkname=pubmed_pubmed_citedin&id=2040531 or if there's an api call that can retrieve not only the pmids that cited a particular pmid but also other info for the cited pmids (i.e. publication date)

ADD REPLY

Login before adding your answer.

Traffic: 2510 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6