Top Banner
Visualizing Open Access building a scalable infrastructure to showcase the reach of MIT research
38

Visualizing Open Access - 2015 Code4Lib Northeast

Aug 10, 2015

Download

Education

Matt Bernhardt
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Visualizing Open Access - 2015 Code4Lib Northeast

Visualizing Open Accessbuilding a scalable infrastructure to

showcase the reach of MIT research

Page 2: Visualizing Open Access - 2015 Code4Lib Northeast

Background

Page 3: Visualizing Open Access - 2015 Code4Lib Northeast

Background

March 18, 2009 - Open Access Policy adopted“...The policy is to take effect immediately; it will be reviewed after five years by the Faculty Policy Committee, with a report presented to the Faculty.”

Page 4: Visualizing Open Access - 2015 Code4Lib Northeast

Background

March 18, 2009 - Open Access Policy adopted“...The policy is to take effect immediately; it will be reviewed after five years by the Faculty Policy Committee, with a report presented to the Faculty.”

2009 – 2013 MIT Libraries assemble a collection within Dspace@MIT for Open Access Articles.

~15,000 articles, ~ 1 million downloads

Page 5: Visualizing Open Access - 2015 Code4Lib Northeast

Background

~15,000 articles, ~ 1 million downloads, but…

Author-level information?Department-level information?

Page 6: Visualizing Open Access - 2015 Code4Lib Northeast

Background

March 18, 2009 - Open Access Policy adopted“[P]olicy … will be reviewed after five years…”

August 2013 - Project begins“Implement author-level, article-level, and aggregated article download usage statistics for articles in the Open Access Articles Collection in DSpace@MIT to incentivize deposits and provide useful assessment information for the MIT Faculty Open Access Policy.”

Page 7: Visualizing Open Access - 2015 Code4Lib Northeast

Prior Work

Page 8: Visualizing Open Access - 2015 Code4Lib Northeast

Prior Work

MyDASH provided solid model…• Map• Timeline• Summary table

Page 9: Visualizing Open Access - 2015 Code4Lib Northeast

Prior Work

MyDASH provided solid model…• Map• Timeline• Summary table

… but couldn’t be directly implemented.• Repository versus One Collection• Multiple department affiliations

Page 10: Visualizing Open Access - 2015 Code4Lib Northeast

Project Goals

• Make available download statistics at three levels: author, article, and aggregate

• Incentivize deposits to collection• Provide useful information for policy evaluation

• Evaluate new technologies within the Libraries (i.e. MongoDB)

Page 11: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline

Page 12: Visualizing Open Access - 2015 Code4Lib Northeast

Two-part project

Data processing pipelinehttps://github.com/MITLibraries/oastats-backend

Visualization interfacehttps://github.com/MITLibraries/oastats-ui

Page 13: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline

https://github.com/MITLibraries/oastats-backend

• Apache logs• Python• DSpace• GeoIP• SOLR

Page 14: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline

Start from Apache server logs

● Filter the qualifying downloads● Look up the downloaded paper● Augment with additional information● Store in MongoDB● Use SOLR to build summary collection

UI queries summary collection

Page 15: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline

Page 16: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline challenges

Page 17: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline challenges - authors

Author identities● Field-specific naming conventions

o “Abelson, Hal”o “Abelson, H”o “Hal Abelson”

● Common names

Page 18: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline challenges - authors

Page 19: Visualizing Open Access - 2015 Code4Lib Northeast

[ { "mitid": “3.1415926537", "name": "Cohen-Tanugi, David" }, { "mitid": “2.7182818", "name": "Dave, Shreya H." }, { "mitid": “6.02x10^23", "name": "Grossman, Jeffrey C." }, { "mitid": “1123581322", "name": "Lienhard, John H." }, { "mitid": “1234567890", "name": "McGovern, Ronan Killian" }]

Pipeline challenges - authors

Page 20: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline challenges - departments

Department names● Inconsistent program / department affiliations

o “Media Laboratory”o “Center for Bits and Atoms”

● Spelling Variationso “MIT Department of Physics”o “Massachusetts Institute of Technology, Department of Physics”o “Dept. of Physics”o “Physics”

Page 21: Visualizing Open Access - 2015 Code4Lib Northeast

Pipeline challenges - departments

Standardized department names

Whitelist of recognized names

Page 22: Visualizing Open Access - 2015 Code4Lib Northeast

{ "_id" : ObjectId("5449127895b0c25083f29352"), "status" : "200", "handle" : "http://hdl.handle.net/1721.1/52491", "title" : "A basal ganglia-forebrain circuit in the songbird biases motor output to avoid vocal errors", "country" : "USA", "authors" : [ { "mitid" : "3.1415926537", "name" : "Fee, Michale S." }, { "mitid" : "6.02x10^23", "name" : "Andalman, Aaron S." } ], "request" : "/openaccess-disseminate/1721.1/52491", "referer" : "http://www.google.com/search?q=head+mounted+microphone+zebra+finch&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a", "user_agent" : "Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8", "time" : ISODate("2010-08-10T17:14:03Z"), "ip_address" : "128.218.64.242", "dlcs" : [ { "display" : "McGovern Institute for Brain Research at MIT", "canonical" : "McGovern Institute for Brain Research at MIT" }, { "display" : "Brain and Cognitive Sciences", "canonical" : "Massachusetts Institute of Technology. Department of Brain and Cognitive Sciences" } ], "filesize" : "1661848"}

Page 23: Visualizing Open Access - 2015 Code4Lib Northeast

{ "_id" : "Overall", "countries" : [ { "country" : "862", "downloads" : 35 } … ], "dates" : [ { "date" : "2014-01-07", "downloads" : 3 } … ], "downloads" : 10000, "size" : 101, "type" : "overall"}

Page 24: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 25: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

https://github.com/MITLibraries/oastats-ui

● Mongo-backed● PHP● DataTables● D3.js● DataMaps

Page 26: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 27: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 28: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 29: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 30: Visualizing Open Access - 2015 Code4Lib Northeast

Web interface

Page 31: Visualizing Open Access - 2015 Code4Lib Northeast

Email to authors

Page 32: Visualizing Open Access - 2015 Code4Lib Northeast

Email to authorsDear {name}, Thank you for sharing your scholarly articles through the open repository DSpace@MIT <https://dspace.mit.edu/handle/1721.1/49433/>, in association with the MIT Faculty Open Access Policy <https://libraries.mit.edu/oapolicy>. Our newly implemented OA Stats Service provides data about the use and reach of our open access collection. Since August 2010, 15,184 articles have been downloaded from 227 different countries. This service also provides information at the author and article level: Your 3 articles have been downloaded 168 times since they were deposited, from 28 different countries. You can access more detailed download information about your articles, including per-article and per-country downloads at <https://oastats.mit.edu>. Initially, we plan to provide this information to all authors via email in the Fall and Spring semesters. As we seek to improve the service, we'll consider expanding options to interact with it and the underlying data. We are anxious to hear your feedback on how this service can be most useful to you, so please send your suggestions to [email protected]. --From the MIT Libraries

Page 33: Visualizing Open Access - 2015 Code4Lib Northeast

Email to authors

Page 34: Visualizing Open Access - 2015 Code4Lib Northeast

Email to authors

Page 35: Visualizing Open Access - 2015 Code4Lib Northeast

Faculty reception

Excitement● “Thank you for the update, this is a fantastic tool!!”● “Thanks so much for doing this - it's really cool and awesome!”

Why not more?● “Hi, I like your feedback. But I am puzzled that only one of my articles is in

your database.”● Department heads using this as leverage to encourage further

contributions

Page 36: Visualizing Open Access - 2015 Code4Lib Northeast

Project goals revisited

• Make available download statistics at three levels: author, article, and aggregate

• Incentivize deposits to collection• Provide useful information for policy evaluation

• Evaluate new technologies within the Libraries (i.e. MongoDB)

Page 37: Visualizing Open Access - 2015 Code4Lib Northeast

Future work

● Automate the pipeline● Run pipeline more frequently● Ditch Mongo for something relational● Talk to faculty about making more detailed information

public● Add functionality to UI (additional format exports, move

to SPA)● Improve cataloging in DSpace@MIT with lookup

services

Page 38: Visualizing Open Access - 2015 Code4Lib Northeast

Thanks!

Matt [email protected]@morphosis7

https://github.com/MITLibraries/oastats-backend

https://github.com/MITLibraries/oastats-ui

http://oastats.mit.edu