query-51debef0d46f75562dc1be3f25a7d84b

rq turtle/ttl

ألوان العين الشعبية بين البشر Popular eye colors among humans Colors d'ulls populars Časté barvy očí lidí Popular eye colors among humans Häufige Augenfarben von Menschen Popular eye colours among humans Oftaj koloroj de la homa okulo Colores de ojos más comunes Ohiko koloreak gizakien begietan צבע עיניים נפוץ בקרב בני אדם Popular eye colors among humans Warna mata manusia yang paling umum Colori degli occhi più comuni 主な瞳の色 Popular eye colors among humans Popular eye colors among humans Populiariausios akių spalvos Popular eye colors among humans Popular eye colors among humans Popular eye colors among humans Culori populare ale ochilor umani Популярные цвета глаз людей Popular eye colors among humans Popular eye colors among humans İnsanlar arasında popüler göz renkleri Популярні кольори очей у людей Popular eye colors among humans

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:<span lang="en" dir="ltr" class="mw-content-ltr">Popular eye colors among humans</span>
# <span lang="en" dir="ltr" class="mw-content-ltr">illustrates bubblechart view, count</span>
#defaultView:BubbleChart
SELECT ?eyeColor ?eyeColorLabel ?rgb (COUNT(?human) AS ?count)
WHERE
{
  ?human wdt:P31 wd:Q5.
  ?human wdt:P1340 ?eyeColor.
  OPTIONAL { ?eyeColor wdt:P465 ?rgb. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
GROUP BY ?eyeColor ?eyeColorLabel ?rgb
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v3("?eyeColor"):::projected v2("?human"):::projected v4("?rgb"):::projected c6(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c8(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P1340"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P465".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?human)"/] v2 --o bind1 bind1 --as--o v5