query-8dc95661216624e33160ca8947a40602

rq turtle/ttl

Short author names statistics

Use at

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://neurovault.org/collections/'))
  ?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://neurovault.org/collections/')"]] f0 --> v2 v3 --"wdt:P1325"--> v2 v3 --"wdt:P2093"--> v4 bind2[/"count(?paper)"/] v3 --o bind2 bind2 --as--o v5