Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upLook into more examples for Scholia #38
Comments
Daniel-Mietchen
added
1h
Wikidata
far-future
labels
Feb 22, 2017
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 7, 2017
Owner
P921 for journals and publishers, possibly even for organizations, series and funders.
P921 for journals and publishers, possibly even for organizations, series and funders. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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.
Allow traveling from one Scholia page to another one by replacing - optionally - the links to Wikidata items with links to Scholia profiles. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 8, 2017
Owner
possibly also include aspects for
- occupations
- academic fields
- methods
possibly also include aspects for
|
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Articles about person/ organization/ funder/ journal/ etc. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 8, 2017
Owner
Would be great to have a logo - would help to incorporate Scholia into Template:Q' or a derivative.
Would be great to have a logo - would help to incorporate Scholia into Template:Q' or a derivative. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 8, 2017
Owner
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 .
I set up a very basic version of a Scholia template: |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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
How best to handle timeouts, e.g. for |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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.
Max Planck Society |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 13, 2017
Owner
Posted the above points as issues on the Scholia repo:
fnielsen/scholia#46
fnielsen/scholia#47
fnielsen/scholia#48
fnielsen/scholia#49
fnielsen/scholia#50
fnielsen/scholia#51
fnielsen/scholia#52
fnielsen/scholia#53
fnielsen/scholia#54
fnielsen/scholia#55
Posted the above points as issues on the Scholia repo: |
Daniel-Mietchen
added
1day
hackathon
labels
Mar 13, 2017
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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)
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) |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 17, 2017
Owner
add
https://tools.wmflabs.org/scholia/topic/Q1425625 (reproducibility)
https://tools.wmflabs.org/scholia/topic/Q1514944 (vocal learning)
https://tools.wmflabs.org/scholia/topic/Q858810 (big data)
https://tools.wmflabs.org/scholia/topic/Q1252988 (epidemiological modelling)
https://tools.wmflabs.org/scholia/topic/Q1460232 (virulence)
https://tools.wmflabs.org/scholia/topic/Q275969 (crowdsourcing)
to
https://github.com/fnielsen/scholia/blob/master/scholia/app/templates/topic_empty.html
add |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Mar 17, 2017
Owner
#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)
#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) |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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
refresh button https://tools.wmflabs.org/scholia/topic/Q418946 |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Add "you can help" kind of messages to the individual sections. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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"
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" |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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
get rid of superfluous color label in "Number of publications per year" |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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).
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). |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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 .
A first implementation of the Pubfeed functionality is now up on https://www.wikidata.org/wiki/User:Daniel_Mietchen/Interesting_publications/Part_1 . |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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.
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. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Add section links to all aspect views. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
"the dress" as an example for a topic Needs some work. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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/
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/ |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Apr 13, 2017
Owner
further aspects:
- young scientists (1st publication less than 5 years back)
- country
- social media identifier
further aspects:
|
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Apr 14, 2017
Owner
Make use of qualifiers, e.g. P642 in
https://www.wikidata.org/wiki/Q13420249#P31
Make use of qualifiers, e.g. P642 in |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
referenced this issue
Apr 21, 2017
Open
Make a list of papers cited at a conference #254
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
May 2, 2017
Owner
In author view, expose number and/ or ratio of open versus non-open papers.
In author view, expose number and/ or ratio of open versus non-open papers. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
May 4, 2017
Owner
in work aspect, display main topics of works citing or cited from the current work.
in work aspect, display main topics of works citing or cited from the current work. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
May 7, 2017
Owner
check https://ideas.repec.org/top/top.person.dcites.html for applicability to scholia
check https://ideas.repec.org/top/top.person.dcites.html for applicability to scholia |
Daniel-Mietchen
referenced this issue
May 20, 2017
Closed
19 - 21 May 2017, Vienna: Wikimedia Hackathon 2017 #49
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jun 4, 2017
Owner
in author aspect: new citations to works that the target author has cited
in author aspect: new citations to works that the target author has cited |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jun 19, 2017
Owner
another work example:
https://tools.wmflabs.org/scholia/work/Q21090281
another work example: |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jun 22, 2017
Owner
add some "genre" (or so) aspect, e.g. for obituary: https://www.wikidata.org/wiki/Q309481 .
add some "genre" (or so) aspect, e.g. for obituary: https://www.wikidata.org/wiki/Q309481 . |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jun 22, 2017
Owner
utilize "field of work" ( https://www.wikidata.org/wiki/Property:P101 ) for Scholia
utilize "field of work" ( https://www.wikidata.org/wiki/Property:P101 ) for Scholia |
Daniel-Mietchen
referenced this issue
Jun 22, 2017
Open
Turn Scholia idea collection from #38 into individual tickets #365
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jun 24, 2017
Owner
in topic aspect, add papers published in journals whose main subject is topic .
in topic aspect, add papers published in journals whose main subject is topic . |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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?
For highly-cited papers that don't have a P921, can it be inferred from the P921s of citing or cited papers? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
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
Think about ways to visualize relationships between keywords, publications and grants, e.g. as per |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Jul 25, 2017
Owner
In work aspect, list properties most commonly associated with uses of the work as reference.
In work aspect, list properties most commonly associated with uses of the work as reference. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
topic example: asbestos |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
topic example: medical ethics |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
organize a scholia workshop? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
a new aspect for repositories (e.g. PMC) or similar? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
enable the use of aliases in Scholia search |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
display name in native language |
Daniel-Mietchen
added
the
WikiCite
label
Feb 9, 2018
Daniel-Mietchen
added
the
scholia
label
Mar 3, 2018
Daniel-Mietchen
added
the
Wikibase
label
Apr 24, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Daniel-Mietchen
Sep 5, 2018
Owner
Re PubFeed, there is now also Citation Gecko, as per Daniel-Mietchen/events#394 (comment)
Re PubFeed, there is now also Citation Gecko, as per Daniel-Mietchen/events#394 (comment) |
Daniel-Mietchen commentedFeb 22, 2017
https://tools.wmflabs.org/scholia/
1h to get started