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

In organization aspect, add panel for topics their people publish on #437

Open
Daniel-Mietchen opened this Issue Jul 15, 2018 · 3 comments

Comments

1 participant
@Daniel-Mietchen
Copy link
Collaborator

Daniel-Mietchen commented Jul 15, 2018

could be useful to engage with people from the organization about whether their research focus is accurately represented (which it currently rarely is), and what they can do about it.

@Daniel-Mietchen Daniel-Mietchen added this to To do in Topics via automation Aug 23, 2018

@Daniel-Mietchen Daniel-Mietchen added this to To do in Organizations via automation Aug 23, 2018

@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator

Daniel-Mietchen commented Dec 21, 2018

Here is a first draft for such a query:

#defaultView:BubbleChart
SELECT
  (SAMPLE(?number_of_works_) AS ?works)
  ?topic ?topicLabel ?topicDescription
WITH {
  SELECT DISTINCT ?researcher WHERE {
    ?researcher ( wdt:P108 | wdt:P463 | wdt:P1416 ) / wdt:P361* wd:Q1269766 . 
  } 
} AS %researchers
WITH {
  SELECT DISTINCT ?topic
    (COUNT(?work) AS ?number_of_works_)
  WHERE {
    INCLUDE %researchers
    ?work wdt:P50 ?researcher . 
    ?work wdt:P921 ?topic . 
  } 
  GROUP BY ?topic
#  LIMIT 100
} AS %researchers_and_number_of_works
WHERE {
  INCLUDE %researchers_and_number_of_works
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da,de,es,fr,nl,no,ru,sv,zh" . } 
}
GROUP BY ?topic ?topicLabel ?topicDescription 
#ORDER BY DESC(?works)
@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator

Daniel-Mietchen commented Feb 1, 2019

It would also be good if we had an organization/topic subaspect, e.g. something like
https://tools.wmflabs.org/scholia/organization/Q1269766/topic/Q202864 .

This could even be linked from the bubble graph above.

Of course, we can emulate organization/ topic via the existing location/topic subaspect, but for crowded places, this may not be ideal.

@Daniel-Mietchen

This comment has been minimized.

Copy link
Collaborator

Daniel-Mietchen commented Feb 1, 2019

I have a prototype for this set up at
https://www.wikidata.org/w/index.php?title=Wikidata:University_of_Virginia/Listeria/UVa_people/Common_topics_of_publications_co-authored_by_UVa_people&oldid=847862474 .
The rightmost column would do the linking to the /organization/topic subaspect. Since it is constructed with the CONCAT command, the same functionality could be achieved via JavaScript modification of the SPARQL query results, making the SPARQL query cleaner.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment