User:Daniel Mietchen/Interesting publications
(Redirected from User:Daniel Mietchen/Interesting papers)
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.
- Daniel Mietchen/Interesting publications/BDSTG hackathon 2017
- Daniel Mietchen/Interesting publications/Part 1
- Daniel Mietchen/Interesting publications/Part 2
- Daniel Mietchen/Interesting publications/Part 3
- Daniel Mietchen/Interesting publications/Part 4
- Daniel Mietchen/Interesting publications/Part 5
- Daniel Mietchen/Interesting publications/Part 6
- Daniel Mietchen/Interesting publications/Part 7
- Daniel Mietchen/Interesting publications/To do
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
- finding new publications (and possibly other stuff) that
- for curating metadata here on-wiki as well as for publications
See also
editQueries
editAdapted 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)
- 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)