Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more prolific authors in some venue #11

Closed
egonw opened this issue Nov 11, 2016 · 2 comments
Closed

more prolific authors in some venue #11

egonw opened this issue Nov 11, 2016 · 2 comments
Labels
examples usage examples presented to Scholia users P18-image Wikidata property P50-author Wikidata property P1433-published-in Wikidata property

Comments

@egonw
Copy link
Collaborator

egonw commented Nov 11, 2016

Again with JCheminf as example:

SELECT ?author ?author_label (count(?work) as ?count) WHERE {
  ?work wdt:P50 ?author ;
        wdt:P1433 wd:Q6294930.
  ?author rdfs:label ?author_label . filter (lang(?author_label) = 'en')
} group by ?author ?author_label
order by desc(?count)
limit 20
@fnielsen
Copy link
Collaborator

I am considering this:

#defaultView:ImageGrid
select (sample(?image) as ?animage) ?authorLabel (count(?work) as ?count) where {
  ?work wdt:P1433 wd:Q6294930 .
  ?work wdt:P50 ?author .
  optional { ?author wdt:P18 ?image_ . }
  bind(coalesce(?image_, <http://commons.wikimedia.org/wiki/Special:FilePath/1D_line.svg>) AS ?image)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da" . } 
} group by ?author ?authorLabel
order by desc(?count)
limit 50

... but perhaps not so good.

@fnielsen
Copy link
Collaborator

@Daniel-Mietchen Daniel-Mietchen added the examples usage examples presented to Scholia users label Apr 5, 2018
@Daniel-Mietchen Daniel-Mietchen added P50-author Wikidata property P1433-published-in Wikidata property P18-image Wikidata property labels Aug 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
examples usage examples presented to Scholia users P18-image Wikidata property P50-author Wikidata property P1433-published-in Wikidata property
Projects
None yet
Development

No branches or pull requests

3 participants