query-925447f4ed1ad3958828cbb606128c67

rq turtle/ttl

Journal statistics

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
select ?published_inLabel (count(?item) as ?count) where {
  ?item wdt:P31 wd:Q13442814 . ?item wdt:P1325 ?resource . 
  filter strstarts(str(?resource), "http://neurosynth.org/studies/")
  ?item wdt:P1433 ?published_in .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
  } group by ?published_in ?published_inLabel
order by desc(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v3("?item"):::projected v4("?published_in") v2("?resource") c3(["wd:Q13442814"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal f0[["starts-with(str(?resource),'http://neurosynth.org/studies/')"]] f0 --> v2 v3 --"wdt:P31"--> c3 v3 --"wdt:P1325"--> v2 v3 --"wdt:P1433"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind2[/"count(?item)"/] v3 --o bind2 bind2 --as--o v5