User:Daniel Mietchen/Interesting publications

This page helps me keep track of publications (mostly journal articles) I find interesting. It also helps me test Module:Cite, which gives "Warning: This page contains too many expensive parser function calls. It should have less than 500 calls", so I have started using subpages for batches of much less than 500 publications.

How I am planning to use these lists edit

  • primarily as a discovery tool
    • finding new publications (and possibly other stuff) that
      • are on the topics I am interested in
      • cite papers I am interested in
      • are written by people whose past work I found interesting
  • for curating metadata here on-wiki as well as for publications

See also edit

Queries edit

Adapted from Property talk:P2860.

  • most cited Zika author:
#defaultView:BubbleChart
#Who is the most cited author who has published on Zika?
SELECT ?author ?authorLabel (COUNT(?publication) AS ?count)
WHERE
{
    { ?item wdt:P921 wd:Q202864 . } UNION { ?item wdt:P921 wd:Q8071861 . }
    ?item wdt:P2860 ?publication .
    ?publication wdt:P50 ?author .
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?author ?authorLabel
ORDER BY DESC(?count)
Try it!
  • most cited Zika paper:
#defaultView:BubbleChart
#Which Zika publication is cited the most? Counting publications that cite other publications (expressed with p2860)
SELECT ?publication ?publicationLabel (COUNT(?publication) AS ?count)
WHERE
{
  { ?item wdt:P921 wd:Q202864 . } UNION { ?item wdt:P921 wd:Q8071861 . }  
  ?item wdt:P2860 ?publication .
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
       ?publication rdfs:label ?publicationLabel
    }
}
GROUP BY ?publication ?publicationLabel
ORDER BY DESC(?count)
Try it!