Daniel-Mietchen / ideas

A dumping ground for halfbaked ideas, some of which will hopefully be worked on soon
Other
26 stars 6 forks source link

Further topics for literature indexing in Wikidata #590

Closed Daniel-Mietchen closed 5 years ago

Daniel-Mietchen commented 6 years ago
Daniel-Mietchen commented 6 years ago
Daniel-Mietchen commented 6 years ago
Daniel-Mietchen commented 6 years ago

This query provides an overview of the topics that have already been used to tag scholarly articles indexed in Wikidata:

#defaultView:Table
SELECT DISTINCT ?topic ?topicLabel
WITH {
  SELECT (count(?work) as ?count) ?topic WHERE {
    ?work wdt:P921 ?topic ;
          wdt:P31 wd:Q13442814 .
  }
  GROUP BY ?topic
} AS %result
WHERE {
  INCLUDE %result
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } 
}
ORDER BY DESC(?count)
Daniel-Mietchen commented 5 years ago

I have now moved my notes on topic indexing over to https://www.wikidata.org/w/index.php?title=User:Daniel_Mietchen/QuickStatements&oldid=939899867 .