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

Look into more examples for Scholia #38

Open
Daniel-Mietchen opened this Issue Feb 22, 2017 · 43 comments

Comments

Projects
None yet
1 participant
@Daniel-Mietchen
Owner

Daniel-Mietchen commented Feb 22, 2017

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 7, 2017

Owner

P921 for journals and publishers, possibly even for organizations, series and funders.

Owner

Daniel-Mietchen commented Mar 7, 2017

P921 for journals and publishers, possibly even for organizations, series and funders.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 8, 2017

Owner

Allow traveling from one Scholia page to another one by replacing - optionally - the links to Wikidata items with links to Scholia profiles.

Owner

Daniel-Mietchen commented Mar 8, 2017

Allow traveling from one Scholia page to another one by replacing - optionally - the links to Wikidata items with links to Scholia profiles.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 8, 2017

Owner

possibly also include aspects for

  • occupations
  • academic fields
  • methods
Owner

Daniel-Mietchen commented Mar 8, 2017

possibly also include aspects for

  • occupations
  • academic fields
  • methods
@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 8, 2017

Owner

Articles about person/ organization/ funder/ journal/ etc.

Owner

Daniel-Mietchen commented Mar 8, 2017

Articles about person/ organization/ funder/ journal/ etc.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 8, 2017

Owner

Would be great to have a logo - would help to incorporate Scholia into Template:Q' or a derivative.

Owner

Daniel-Mietchen commented Mar 8, 2017

Would be great to have a logo - would help to incorporate Scholia into Template:Q' or a derivative.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen
Owner

Daniel-Mietchen commented Mar 8, 2017

I set up a very basic version of a Scholia template:
https://www.wikidata.org/wiki/Template:Scholia ,
test corpus at
https://www.wikidata.org/wiki/User:Daniel_Mietchen/Bioinformatics .

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 9, 2017

Owner

How best to handle timeouts, e.g. for
"Co-author-normalized citations per year"
in https://tools.wmflabs.org/scholia/organization/Q49108

Owner

Daniel-Mietchen commented Mar 9, 2017

How best to handle timeouts, e.g. for
"Co-author-normalized citations per year"
in https://tools.wmflabs.org/scholia/organization/Q49108

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 9, 2017

Owner

Max Planck Society
https://tools.wmflabs.org/scholia/organization/Q158085
should aggregate from across the different Max Planck Institutes but currently does not.

Owner

Daniel-Mietchen commented Mar 9, 2017

Max Planck Society
https://tools.wmflabs.org/scholia/organization/Q158085
should aggregate from across the different Max Planck Institutes but currently does not.

@Daniel-Mietchen
Owner

Daniel-Mietchen commented Mar 13, 2017

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 16, 2017

Owner

add topics to publication lists:

#defaultView:Table
SELECT ?work ?workLabel 
(min(?dates) as ?date) 
(sample(?pages_) as ?pages) 
(sample(?venue_labels) as ?venue) 
(group_concat(DISTINCT ?author_label; separator=", ") as ?authors) 
(group_concat(DISTINCT ?topic_label; separator=", ") as ?topics) 
WHERE {
  ?work wdt:P50 wd:Q20980928 .
  ?work wdt:P50 ?author .
  ?author rdfs:label ?author_label . filter (lang(?author_label) = 'en')
  
  optional { ?work wdt:P577 ?dates }
  optional { ?work wdt:P1104 ?pages_ }
  optional { ?work wdt:P1433 ?venues . ?venues rdfs:label ?venue_labels . filter (lang(?venue_labels) = 'en') }
  optional { ?work wdt:P921 ?topic . ?topic rdfs:label ?topic_label . filter (lang(?topic_label) = 'en') }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr,de,ru,es,zh,jp". }  
} group by ?work ?workLabel
order by desc(?date)    
Owner

Daniel-Mietchen commented Mar 16, 2017

add topics to publication lists:

#defaultView:Table
SELECT ?work ?workLabel 
(min(?dates) as ?date) 
(sample(?pages_) as ?pages) 
(sample(?venue_labels) as ?venue) 
(group_concat(DISTINCT ?author_label; separator=", ") as ?authors) 
(group_concat(DISTINCT ?topic_label; separator=", ") as ?topics) 
WHERE {
  ?work wdt:P50 wd:Q20980928 .
  ?work wdt:P50 ?author .
  ?author rdfs:label ?author_label . filter (lang(?author_label) = 'en')
  
  optional { ?work wdt:P577 ?dates }
  optional { ?work wdt:P1104 ?pages_ }
  optional { ?work wdt:P1433 ?venues . ?venues rdfs:label ?venue_labels . filter (lang(?venue_labels) = 'en') }
  optional { ?work wdt:P921 ?topic . ?topic rdfs:label ?topic_label . filter (lang(?topic_label) = 'en') }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr,de,ru,es,zh,jp". }  
} group by ?work ?workLabel
order by desc(?date)    
@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 17, 2017

Owner

researchers on Twitter

#defaultView:BubbleChart
#Researchers on Twitter
SELECT DISTINCT ?author ?authorLabel (COUNT(DISTINCT ?publication) AS ?count) ?twitter
WHERE
{
#    ?item wdt:P2860 ?publication . # citations
    ?publication wdt:P31 wd:Q13442814;
                 wdt:P50 ?author . # authors
#    ?author wdt:P21 wd:Q6581072. # females
    ?author wdt:P2002 ?twitter . # Twitter handle
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?author ?authorLabel ?twitter
ORDER BY DESC(?count)
Owner

Daniel-Mietchen commented Mar 17, 2017

researchers on Twitter

#defaultView:BubbleChart
#Researchers on Twitter
SELECT DISTINCT ?author ?authorLabel (COUNT(DISTINCT ?publication) AS ?count) ?twitter
WHERE
{
#    ?item wdt:P2860 ?publication . # citations
    ?publication wdt:P31 wd:Q13442814;
                 wdt:P50 ?author . # authors
#    ?author wdt:P21 wd:Q6581072. # females
    ?author wdt:P2002 ?twitter . # Twitter handle
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?author ?authorLabel ?twitter
ORDER BY DESC(?count)
@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 18, 2017

Owner

refresh button

https://tools.wmflabs.org/scholia/topic/Q418946
took about 3 min to update, even though a fresh query (with a LIMIT) brought the expected results

Owner

Daniel-Mietchen commented Mar 18, 2017

refresh button

https://tools.wmflabs.org/scholia/topic/Q418946
took about 3 min to update, even though a fresh query (with a LIMIT) brought the expected results

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 19, 2017

Owner

Add "you can help" kind of messages to the individual sections.

Owner

Daniel-Mietchen commented Mar 19, 2017

Add "you can help" kind of messages to the individual sections.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 19, 2017

Owner

https://tools.wmflabs.org/scholia/organization/Q49108

Researcher gender distribution

https://tools.wmflabs.org/scholia/topic/Q1460232

hide/ show pagination

https://tools.wmflabs.org/scholia/topic/Q1460232

"Most cited works from works on the topic" should be "Works most cited by works on the topic"

Owner

Daniel-Mietchen commented Mar 19, 2017

https://tools.wmflabs.org/scholia/organization/Q49108

Researcher gender distribution

https://tools.wmflabs.org/scholia/topic/Q1460232

hide/ show pagination

https://tools.wmflabs.org/scholia/topic/Q1460232

"Most cited works from works on the topic" should be "Works most cited by works on the topic"

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 19, 2017

Owner

get rid of superfluous color label in "Number of publications per year"
e.g.
https://tools.wmflabs.org/scholia/author/Q97270

Owner

Daniel-Mietchen commented Mar 19, 2017

get rid of superfluous color label in "Number of publications per year"
e.g.
https://tools.wmflabs.org/scholia/author/Q97270

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 20, 2017

Owner

Use VALUES to put the QIDs from collections like https://www.wikidata.org/wiki/User:Daniel_Mietchen/Interesting_publications into a query for recent publications, e.g. ones citing those seed publications (similar to what Pubfeed did back then).

Owner

Daniel-Mietchen commented Mar 20, 2017

Use VALUES to put the QIDs from collections like https://www.wikidata.org/wiki/User:Daniel_Mietchen/Interesting_publications into a query for recent publications, e.g. ones citing those seed publications (similar to what Pubfeed did back then).

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Mar 21, 2017

Owner

A first implementation of the Pubfeed functionality is now up on https://www.wikidata.org/wiki/User:Daniel_Mietchen/Interesting_publications/Part_1 .

Owner

Daniel-Mietchen commented Mar 21, 2017

A first implementation of the Pubfeed functionality is now up on https://www.wikidata.org/wiki/User:Daniel_Mietchen/Interesting_publications/Part_1 .

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 6, 2017

Owner

Add "statements supported by papers published by X" variants also to X in [author, org, venue, series, publisher, funder]

Consider mechanisms through which these X could play a special role in curating those statements.

Owner

Daniel-Mietchen commented Apr 6, 2017

Add "statements supported by papers published by X" variants also to X in [author, org, venue, series, publisher, funder]

Consider mechanisms through which these X could play a special role in curating those statements.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 7, 2017

Owner

Add section links to all aspect views.

Owner

Daniel-Mietchen commented Apr 7, 2017

Add section links to all aspect views.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 8, 2017

Owner

"the dress" as an example for a topic

Needs some work.

Owner

Daniel-Mietchen commented Apr 8, 2017

"the dress" as an example for a topic

Needs some work.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 9, 2017

Owner

Re the PubFeed functionality, there is a 2015 blog post about a similar approach: http://mikebarnkob.dk/2015/generating-an-article-network-using-rentrez-and-igraph-in-r/

Owner

Daniel-Mietchen commented Apr 9, 2017

Re the PubFeed functionality, there is a 2015 blog post about a similar approach: http://mikebarnkob.dk/2015/generating-an-article-network-using-rentrez-and-igraph-in-r/

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 13, 2017

Owner

further aspects:

  • young scientists (1st publication less than 5 years back)
  • country
  • social media identifier
Owner

Daniel-Mietchen commented Apr 13, 2017

further aspects:

  • young scientists (1st publication less than 5 years back)
  • country
  • social media identifier
@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Apr 14, 2017

Owner

Make use of qualifiers, e.g. P642 in
https://www.wikidata.org/wiki/Q13420249#P31

Owner

Daniel-Mietchen commented Apr 14, 2017

Make use of qualifiers, e.g. P642 in
https://www.wikidata.org/wiki/Q13420249#P31

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
Owner

Daniel-Mietchen commented Apr 14, 2017

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen May 2, 2017

Owner

In author view, expose number and/ or ratio of open versus non-open papers.

Owner

Daniel-Mietchen commented May 2, 2017

In author view, expose number and/ or ratio of open versus non-open papers.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen May 4, 2017

Owner

in work aspect, display main topics of works citing or cited from the current work.

Owner

Daniel-Mietchen commented May 4, 2017

in work aspect, display main topics of works citing or cited from the current work.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen
Owner

Daniel-Mietchen commented May 7, 2017

check https://ideas.repec.org/top/top.person.dcites.html for applicability to scholia

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jun 4, 2017

Owner

in author aspect: new citations to works that the target author has cited

Owner

Daniel-Mietchen commented Jun 4, 2017

in author aspect: new citations to works that the target author has cited

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
Owner

Daniel-Mietchen commented Jun 19, 2017

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jun 22, 2017

Owner

add some "genre" (or so) aspect, e.g. for obituary: https://www.wikidata.org/wiki/Q309481 .

Owner

Daniel-Mietchen commented Jun 22, 2017

add some "genre" (or so) aspect, e.g. for obituary: https://www.wikidata.org/wiki/Q309481 .

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jun 22, 2017

Owner

utilize "field of work" ( https://www.wikidata.org/wiki/Property:P101 ) for Scholia

Owner

Daniel-Mietchen commented Jun 22, 2017

utilize "field of work" ( https://www.wikidata.org/wiki/Property:P101 ) for Scholia

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jun 24, 2017

Owner

in topic aspect, add papers published in journals whose main subject is topic .

Owner

Daniel-Mietchen commented Jun 24, 2017

in topic aspect, add papers published in journals whose main subject is topic .

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 7, 2017

Owner

For highly-cited papers that don't have a P921, can it be inferred from the P921s of citing or cited papers?

Owner

Daniel-Mietchen commented Jul 7, 2017

For highly-cited papers that don't have a P921, can it be inferred from the P921s of citing or cited papers?

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 13, 2017

Owner

Think about ways to visualize relationships between keywords, publications and grants, e.g. as per
http://grantome.com/blog/research-decreasing-for-keywords

Owner

Daniel-Mietchen commented Jul 13, 2017

Think about ways to visualize relationships between keywords, publications and grants, e.g. as per
http://grantome.com/blog/research-decreasing-for-keywords

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 25, 2017

Owner

In work aspect, list properties most commonly associated with uses of the work as reference.

Owner

Daniel-Mietchen commented Jul 25, 2017

In work aspect, list properties most commonly associated with uses of the work as reference.

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 26, 2017

Owner

topic example: asbestos

Owner

Daniel-Mietchen commented Jul 26, 2017

topic example: asbestos

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen
Owner

Daniel-Mietchen commented Jul 26, 2017

topic example: medical ethics

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 27, 2017

Owner

organize a scholia workshop?

Owner

Daniel-Mietchen commented Jul 27, 2017

organize a scholia workshop?

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Jul 29, 2017

Owner

a new aspect for repositories (e.g. PMC) or similar?

Owner

Daniel-Mietchen commented Jul 29, 2017

a new aspect for repositories (e.g. PMC) or similar?

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Aug 9, 2017

Owner

enable the use of aliases in Scholia search

Owner

Daniel-Mietchen commented Aug 9, 2017

enable the use of aliases in Scholia search

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Aug 9, 2017

Owner

display name in native language

Owner

Daniel-Mietchen commented Aug 9, 2017

display name in native language

@Daniel-Mietchen

This comment has been minimized.

Show comment
Hide comment
@Daniel-Mietchen

Daniel-Mietchen Sep 5, 2018

Owner

Re PubFeed, there is now also Citation Gecko, as per Daniel-Mietchen/events#394 (comment)

Owner

Daniel-Mietchen commented Sep 5, 2018

Re PubFeed, there is now also Citation Gecko, as per Daniel-Mietchen/events#394 (comment)

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