query-fae962aaf3cd061d0d547bbd357356c2

rq turtle/ttl

TODO

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:Replication Crisis by Subject area
#defaultView:BubbleChart
SELECT ?subject ?subjectLabel (COUNT(DISTINCT ?article) AS ?count) WHERE {
?article wdt:P921 wd:Q25303778; wdt:P1433 ?journal .
?journal wdt:P921 ?subject
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?subject ?subjectLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article"):::projected v4("?count") v2("?journal") v3("?subject"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q25303778"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P921"--> c2 v1 --"wdt:P1433"--> v2 v2 --"wdt:P921"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?article)"/] v1 --o bind1 bind1 --as--o v4