query-fdde1f1c36e50728ec443ecabf12746c
TODO
Use at
- https://query.wikidata.org/sparql
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#>
#Contare e comparare graficamente
#Colori degli occhi più comuni. Grafico a bolle, conteggio; il comando che segue è letto da WKD (anche se inizia con #) e significa mostra i risultati in forma di grafico a bolle
#defaultView:BubbleChart
SELECT ?eyeColorLabel (COUNT(?human) AS ?totale) #mostra il colore degli occhi e conta il totale di ?human
WHERE {
?human wdt:P31 wd:Q5. #definisce ?human come Q5
?human wdt:P1340 ?eyeColor. # definisce il colore degli occhi come proprietà di ?human
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?eyeColorLabel # raggruppa per colore degli occhi
ORDER BY DESC(?totale) # ordina in numero decrescente
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?eyeColor")
v2("?human"):::projected
v4("?totale")
c5(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P1340"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?human)"/]
v2 --o bind1
bind1 --as--o v4