query-9292b3a94b5273d0287ea1480b563a3a

rq turtle/ttl

🚧 In-scope species ranked by ambiguity of their taxon abbreviation

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Species ranked by ambiguity of their taxon abbreviation
#defaultView:BubbleChart

PREFIX target: <http://www.wikidata.org/prop/direct/P1813>

SELECT ?count ?o ?oLabel
WHERE {
   {
  SELECT (COUNT(?s) AS ?count) ?o WHERE {
    ?s target: ?o .
    ?s wdt:P105 wd:Q7432 .
    ?s wdt:P6104 wd:Q56241615 .
  }
  GROUP BY ?o
  ORDER BY DESC(?count)
  LIMIT 100
}  SERVICE wikibase:label { bd:serviceParam wikibase:language  "en,da,de,es,fr,jp,nl,no,ru,sv,zh" . }
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count"):::projected v3("?o"):::projected v2("?s") c9(["en,da,de,es,fr,jp,nl,no,ru,sv,zh"]):::literal c3(["wd:Q7432"]):::iri c7(["bd:serviceParam"]):::iri c5(["wd:Q56241615"]):::iri v2 --"wdt:P1813"--> v3 v2 --"wdt:P105"--> c3 v2 --"wdt:P6104"--> c5 bind1[/"count(?s)"/] v2 --o bind1 bind1 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end