query-5980ae27f5db64ebb8822974efc1534c

rq turtle/ttl

BubbleChart: Gender Balance in OdiaWiki Articles

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#>
#defaultView:BubbleChart
PREFIX schema: <http://schema.org/>

SELECT ?gender ?genderLabel(count(distinct?human) as ?number)
WHERE
{
    ?human wdt:P31 wd:Q5
    ; wdt:P21 ?gender.
    ?wikilink schema:about ?human.
    ?wikilink schema:isPartOf <https://or.wikipedia.org/>.
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
GROUP BY ?gender ?genderLabel
LIMIT 6

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?gender"):::projected v1("?human"):::projected v4("?number") v3("?wikilink") c8(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6([https://or.wikipedia.org/]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> v2 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind1[/"count(?human)"/] v1 --o bind1 bind1 --as--o v4