query-ef93b6c0ed2947a61906f69faa7f39db
Short author names statistics
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
select ?short_author (count(?paper) as ?count) where {
?paper wdt:P1325 ?external .
filter (strstarts(str(?external), 'http://neurosynth.org/studies/'))
?paper wdt:P2093 ?short_author .
}
group by ?short_author
order by desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count")
v2("?external")
v3("?paper"):::projected
v4("?short_author"):::projected
f0[["starts-with(str(?external),'http://neurosynth.org/studies/')"]]
f0 --> v2
v3 --"wdt:P1325"--> v2
v3 --"wdt:P2093"--> v4
bind2[/"count(?paper)"/]
v3 --o bind2
bind2 --as--o v5