Wikidata allows us to figure this out with a SPARQL query (created together with Adriano):
#title: Are you cited by Nobel Prize winners?
SELECT (MIN(?dates) AS ?date) ?work ?workLabel
(GROUP_CONCAT(DISTINCT ?winnerLabel; SEPARATOR = ", ") AS ?winners)
(COUNT(DISTINCT(?winnerLabel)) AS ?count)
WHERE {
VALUES ?nobel {
wd:Q7191
wd:Q80061
wd:Q44585
wd:Q38104
}
?work wdt:P50/wdt:P496 "0000-0002-2627-833X" ; # REPLACE WITH YOUR ORCID id
wdt:P577 ?datetimes.
[] wdt:P2860 ?work;
wdt:P50 ?winner.
?winner wdt:P166 ?nobel.
BIND(xsd:date(?datetimes) AS ?dates)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en".
?winner rdfs:label ?winnerLabel.
?work rdfs:label ?workLabel.
}
}
GROUP BY ?work ?workLabel
ORDER BY DESC (?count)
Run this query here. Notice the ORCID given in the middle: change that to your own ORCID identifier.Please keep in mind that Wikidata does not contain all literature (neither do Google Scholar, Web of Science, PubMed) and not all citations.

No comments:
Post a Comment