query-35e712a70962bada11d93777c814663d
Bubble chart showing families
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#>
#defaultView:BubbleChart
SELECT DISTINCT ?family ?familyLabel (COUNT(?software) AS ?count)
WHERE {
?family wdt:P31 wd:Q26085352.
?family wdt:P527 ?format.
?software wdt:P1072 ?format.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?family ?familyLabel
HAVING(COUNT(?software) > 5)
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?_anon_42b5416610844a34809f33a099ae9de195898")
v6("?count")
v2("?family"):::projected
v3("?format")
v4("?software"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q26085352"]):::iri
f0[[" > '5^^xsd:integer'"]]
f0 --> a1
v2 --"wdt:P31"--> c3
v2 --"wdt:P527"--> v3
v4 --"wdt:P1072"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind3[/"count(?software)"/]
v4 --o bind3
bind3 --as--o v5
bind4[/"count(?software)"/]
v4 --o bind4
bind4 --as--o v6