SlideShare une entreprise Scribd logo
1  sur  50
Télécharger pour lire hors ligne
An Introduction to Structured
       Data Presentation
                  New Perspectives on Old Data



                                                                  Shawn Day
                                            Digital Humanities Observatory
                                                        14 November 2012

http://www.slideshare.net/shawnday/structured-data-presentation
Objective



      To appreciate the variety of structured data
   presentation tools available to digital humanities
   scholars and to be able to judge between them.
Agenda
  Data Presentation versus Data Analysis?
  The Readings
    Exhibit Thesis
    The Data Vis Challenge to the Humanities
  Products to be have an awareness of
  Hands On Install and Config
    Exhibit
    OMEKA?
The Two Faces of Data Visualisation
   One of the keys to good visualization is understanding
   what your immediate (and longer term) goals are.
   Are you visualizing data to understand what’s in it, or
   are you trying to communicate meaning to others?
   You - Visualisation for Data Analysis
   Others - Visualisation for Presentation
Information Visualisation:
Challenge for the Humanities
   To use the vast stores of digitised data we are
   collecting we need to develop a digital fluency
   Access
   Exploration
   Visualisation
   Analysis
   Collabouration
The Challenges
   Developing new genres for complex info
   presentation
   creating a literacy that has same rigour and
   richness as current scholarship
   expanding text-based pedagogy to include
   simulation, animation and spatial and geographic
   representation
The Opportunity
   Balance complexity with conciseness
   Balance accuracy with essence
   Speak authoritatively, yet inspire exploration and
   personal insight
A Short History
   Originated in Computer Science
   Disseminated into broader scientific realm
   A late comer to the humanities
   Tufte: concise - clear - accurate
William Playfair (1758 - 1823)
   bar chart
   pie chart
   time series




                            This is a file from the Wikimedia Commons.
John Snow (1813 - 1858)
   Dot Plot
   Spatial Analysis




                          This is a file from the Wikimedia Commons
Charles Minard (1781 - 1870)
   Flow Diagram
   Multi-Vector Information Visualisation




                                   This is a file from the Wikimedia Commons
Tools for collection are far more successful to date
              than those for exploration
New Influences
  Simulation - 3D What if?
  Monitor - Real time data
  Collabouration - Many Eyes
The Challenges to the Use of
Visualisation
   Too Easy to confuse, miscommunicate or
   downright lie
   Break or lack basic visual design principles
   Fail to understand the data, the audience or the
   problem being solved
   Fail to appreciate the visceral or emotional power
   of graphics
   Lack of technical skills in this domain
Structured Data Presentation Tools
(a tiny subset)
   Webservices              Frameworks
     TimeFlow                Gephi
     Google Fusion Tables    Exhibit (Exercise)
     Many Eyes               GraphViz
                             Prefuse
   Hosted                    D3
     Omeka (Omeka)           Processing
TimeFlow
Google FusionTables
Many Eyes
Hands-On Exercise: Simile Exhibit
Looking at Exhibit
Setup and Preparation
   Do Not Use Safari - Firefox or Chrome should be


              X
   fine




   You can find instructions at: http://myeye.ie/ftp1/
   exhibit/recipe.txt
   Need to copy datafiles:
     http://myeye.ie/ftp1/exhibit/nobelists.js?action=raw
     http://myeye.ie/ftp1/exhibit/index1.html
Background on Exhibit


Exhibit was developed at MIT to provide a
lightweight framework for the presentation,
searching and faceted browsing of digital collections.
Exhibit lets you easily create web pages with
advanced text search and filtering functionalities,
with interactive maps, timelines, and other
visualizations
So What?...
   Little programming (JavaScript Template);
   No database (JSON text);
   a series of useful ‘instantly interactive’
   visualisations.
Background
  http://www.simile-widgets.org/exhibit/
  A couple examples…
    Canadian Network for Economic History
    Comox Valley Crime Stoppers
    Research at the DHO
    DHO: Discovery
Exhibit in a Nutshell
The Simplest Exhibit
<html>
!   <head>
!   !      <title>MIT Nobel Prize Winners</title>
!   !      <link href="nobelists.js" type="application/json" rel="exhibit/data" />
!   !     <script src=http://static.simile.mit.edu/exhibit/api-2.0/exhibit-api.js    type="text/javascript"></
    script>
!   <style></style>
!   </head>


!   <body>
!   !      <h1>MIT Nobel Prize Winners</h1>
!   !      <table width="100%”>
!   !      <tr valign="top”>
!   !     <td ex:role="viewPanel”><div ex:role="view"></div></td><td width="25%”>browsing controls here… </
    td></tr>
</table>
</body>
</html>
The Data
    {
"items" : [
               {     type :                  "Nobelist",
                     label :                 "Burton Richter",
! !        !         latlng:                "42.359089,-71.093412",
                     discipline :            "Physics",
                     shared :                "yes",
                     "last-name" :           "Richter",
                     "nobel-year" :          "1976",
                     relationship :          "alumni",
                     "co-winner" :           "Samuel C.C. Ting",
                     "relationship-detail" : "MIT S.B. 1952, Ph.D. 1956",
                  imageURL :              "http://nobelprize.org/nobel_prizes/
        physics/laureates/1976/richter_thumb.jpg"
               },
               ………
    ]
}
The Simplest View
Add Faceted Browsing
   Explore data in
   context
   Filter data by
   attributes
Faceted Browsing Code
<div ex:role="facet"
 ex:expression=".discipline"
 ex:facetLabel="Discipline"></div>
<div ex:role="facet"
 ex:expression=".relationship"
 ex:facetLabel="Relationship"></div>
<div ex:role="facet" ex:expression=".shared"
 ex:facetLabel="Shared?"></div>
<div ex:role="facet" ex:expression=".deceased"
 ex:facetLabel="Deceased?"></div>
Add Search and Sort
Search Code
 <div ex:role="facet"
 ex:facetClass="TextSearch"></div>
Add a Table View
Table Code
 <div
 ex:role="exhibit-view”
 ex:viewClass="Exhibit.TabularView”
 ex:columns=".label, .imageURL, .discipline, .nobel-
 year, .relationship-detail”
 ex:columnLabels="name, photo, discipline, year,
 relationship with MIT”
 ex:columnFormats="list, image, list, list, list”
 ex:sortColumn="3”
 ex:sortAscending="false">
 </div>
Add a Timeline
Timeline Code
   <script src="http://static.simile.mit.edu/exhibit/
   extensions-2.0/time/time-extension.js"
    type="text/javascript"></script>

                          +

<div ex:role="view"
    ex:viewClass="Timeline"
    ex:start=".nobel-year"
    ex:colorKey=".discipline">
</div>
Add a Map View
Wrapup: Exhibit
   Pros                    Cons
     Simple                  Limited Scalability
     Lightweight             Some cross-browser
     No server required      issues
     A host of               Restrictions on Look
     visualisations          and Feel
     Embeddable in other     Extensive
     systems -               customisation means
     ExhibitPress            getting into code


            Here comes Exhibit 3
Moving Beyond with Exhibit
   Ensemble Project Advanced Tutorial:
   http://ensemble.ljmu.ac.uk/q/calbooklet
OMEKA for Curated Collections
   http://omeka.net
Omeka Basics
                                                           OAI/PMH
Exhibit
Metadata

                 Page
                                                               CSV
Section
                 Page


Section
                 Page                                          etc...
                 Page



Collection(s)

          Metadata Tag(s) Type          Metadata Tag(s) Type            Metadata Tag(s) Type
Item                             Item                          Item
          Representations               Representations                 Representations
OMEKA
  http://iridium.omeka.net/exhibits/show/
  carlingford/day1
  http://www.omeka.net/dashboard

  Omeka.org versus Omeka.net

  Sign-Up at: http://www.omeka.net
Where to go next
   http://datajournalism.stanford.edu/
   Bamboo - DIRT (Digital Research Toolkit)
   Timeline Tools
   Visualisation in Education
   Visual Complexity
Academic Visualisation?
There’s lots of published papers out there
...what can you do with them?




                               http://www.autodeskresearch.com/projects/citeology
The Life on An Idea through Citations
Data Visualisation Lessons from Tufte
 1.   Show the Data
 2.   Provoke Thought about the Subject at Hand
 3.   Avoid Distorting the Data
 4.   Present Many Numbers in a Small Space
 5.   Make Large Datasets Coherent
 6.   Encourage Eyes to Compare Data
 7.   Reveal Data at Several Levels of Detail
 8.   Serve a Reasonably Clear Purpose
 9.   Be Closely Integrated with Statistical and Verbal Descriptions of
      the Dataset
What Visual Techniques Exist?
   Connecting your data with the right visualisation
   What is your message?
   How do we know what we might use?
   Start with your Exploratory/Research/Analytical
   Environment (last seminar)
   How do visuals fit into your narrative?
What Visual Techniques Exist?




 Connecting your data with the right visualisation
Thanks for your attention

Contenu connexe

Similaire à Structured Data Presentation

Presenting Your Digital Research
Presenting Your Digital ResearchPresenting Your Digital Research
Presenting Your Digital ResearchShawn Day
 
DITA's New Thang: Going Mapless!
DITA's New Thang: Going Mapless!DITA's New Thang: Going Mapless!
DITA's New Thang: Going Mapless!dclsocialmedia
 
CAMA 2007 Visions of the Future for Contextualized Attention Metadata
CAMA 2007 Visions of the Future for Contextualized Attention MetadataCAMA 2007 Visions of the Future for Contextualized Attention Metadata
CAMA 2007 Visions of the Future for Contextualized Attention MetadataWayne Hodgins
 
Visualized Conference and jQuery Conference
Visualized Conference and jQuery ConferenceVisualized Conference and jQuery Conference
Visualized Conference and jQuery ConferenceKeiichiro Ono
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph IntroductionSören Auer
 
Visualization for Software Analytics
Visualization for Software AnalyticsVisualization for Software Analytics
Visualization for Software AnalyticsMargaret-Anne Storey
 
Multilayered paper prototyping for user concept modeling
Multilayered paper prototyping for user concept modelingMultilayered paper prototyping for user concept modeling
Multilayered paper prototyping for user concept modelingUKOLN (dev), University of Bath
 
Ontology based semantics and graphical notation as directed graphs
Ontology based semantics and graphical notation as directed graphsOntology based semantics and graphical notation as directed graphs
Ontology based semantics and graphical notation as directed graphsJohann Höchtl
 
My XML is Alive! An Intro to XAML
My XML is Alive! An Intro to XAMLMy XML is Alive! An Intro to XAML
My XML is Alive! An Intro to XAMLJeremy Likness
 
Introduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersIntroduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersEmanuele Della Valle
 
Information Architecture and User-friendly design
Information Architecture and User-friendly designInformation Architecture and User-friendly design
Information Architecture and User-friendly designMayaLisa
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glassEduserv Foundation
 
Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021hala Skaf
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Andy Petrella
 
Introduction to web scraping
Introduction to web scrapingIntroduction to web scraping
Introduction to web scrapingDario Cottafava
 
No more Three Tier - A path to a better code for Cloud and Azure
No more Three Tier - A path to a better code for Cloud and AzureNo more Three Tier - A path to a better code for Cloud and Azure
No more Three Tier - A path to a better code for Cloud and AzureMarco Parenzan
 
Semantic.edu, an introduction
Semantic.edu, an introductionSemantic.edu, an introduction
Semantic.edu, an introductionBryan Alexander
 
Explore Data: Data Science + Visualization
Explore Data: Data Science + VisualizationExplore Data: Data Science + Visualization
Explore Data: Data Science + VisualizationRoelof Pieters
 

Similaire à Structured Data Presentation (20)

Presenting Your Digital Research
Presenting Your Digital ResearchPresenting Your Digital Research
Presenting Your Digital Research
 
DITA's New Thang: Going Mapless!
DITA's New Thang: Going Mapless!DITA's New Thang: Going Mapless!
DITA's New Thang: Going Mapless!
 
CAMA 2007 Visions of the Future for Contextualized Attention Metadata
CAMA 2007 Visions of the Future for Contextualized Attention MetadataCAMA 2007 Visions of the Future for Contextualized Attention Metadata
CAMA 2007 Visions of the Future for Contextualized Attention Metadata
 
Visualized Conference and jQuery Conference
Visualized Conference and jQuery ConferenceVisualized Conference and jQuery Conference
Visualized Conference and jQuery Conference
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph Introduction
 
Visualization for Software Analytics
Visualization for Software AnalyticsVisualization for Software Analytics
Visualization for Software Analytics
 
Multilayered paper prototyping for user concept modeling
Multilayered paper prototyping for user concept modelingMultilayered paper prototyping for user concept modeling
Multilayered paper prototyping for user concept modeling
 
Ontology based semantics and graphical notation as directed graphs
Ontology based semantics and graphical notation as directed graphsOntology based semantics and graphical notation as directed graphs
Ontology based semantics and graphical notation as directed graphs
 
My XML is Alive! An Intro to XAML
My XML is Alive! An Intro to XAMLMy XML is Alive! An Intro to XAML
My XML is Alive! An Intro to XAML
 
Introduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS PractitionersIntroduction to Semantic Web for GIS Practitioners
Introduction to Semantic Web for GIS Practitioners
 
Information Architecture and User-friendly design
Information Architecture and User-friendly designInformation Architecture and User-friendly design
Information Architecture and User-friendly design
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glass
 
MindRaider
MindRaiderMindRaider
MindRaider
 
Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)
 
Introduction to D3.js
Introduction to D3.jsIntroduction to D3.js
Introduction to D3.js
 
Introduction to web scraping
Introduction to web scrapingIntroduction to web scraping
Introduction to web scraping
 
No more Three Tier - A path to a better code for Cloud and Azure
No more Three Tier - A path to a better code for Cloud and AzureNo more Three Tier - A path to a better code for Cloud and Azure
No more Three Tier - A path to a better code for Cloud and Azure
 
Semantic.edu, an introduction
Semantic.edu, an introductionSemantic.edu, an introduction
Semantic.edu, an introduction
 
Explore Data: Data Science + Visualization
Explore Data: Data Science + VisualizationExplore Data: Data Science + Visualization
Explore Data: Data Science + Visualization
 

Plus de Shawn Day

Place of Irish Craft Beer - August 2018
Place of Irish Craft Beer - August 2018Place of Irish Craft Beer - August 2018
Place of Irish Craft Beer - August 2018Shawn Day
 
Digital Tools, Trends and Methodologies in the Humanities and Social Sciences
Digital Tools, Trends and Methodologies in the Humanities and Social SciencesDigital Tools, Trends and Methodologies in the Humanities and Social Sciences
Digital Tools, Trends and Methodologies in the Humanities and Social SciencesShawn Day
 
Digital Narratives for Transylvania DH
Digital Narratives for Transylvania DHDigital Narratives for Transylvania DH
Digital Narratives for Transylvania DHShawn Day
 
Data Vis for Transylvania DH
Data Vis for Transylvania DHData Vis for Transylvania DH
Data Vis for Transylvania DHShawn Day
 
Requirements Engineering for the Humanities
Requirements Engineering for the HumanitiesRequirements Engineering for the Humanities
Requirements Engineering for the HumanitiesShawn Day
 
Google Tools for Digital Humanities Scholars
Google Tools for Digital Humanities ScholarsGoogle Tools for Digital Humanities Scholars
Google Tools for Digital Humanities ScholarsShawn Day
 
DH In the Archives
DH In the ArchivesDH In the Archives
DH In the ArchivesShawn Day
 
Putting Your Data on a Map
Putting Your Data on a MapPutting Your Data on a Map
Putting Your Data on a MapShawn Day
 
Comparing and Considering: Exhibit vs Palladio
Comparing and Considering: Exhibit vs PalladioComparing and Considering: Exhibit vs Palladio
Comparing and Considering: Exhibit vs PalladioShawn Day
 
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story Map
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story MapTools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story Map
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story MapShawn Day
 
Creating Narrative with Digital Objects
Creating Narrative with Digital ObjectsCreating Narrative with Digital Objects
Creating Narrative with Digital ObjectsShawn Day
 
Digital Project Success
Digital Project SuccessDigital Project Success
Digital Project SuccessShawn Day
 
Sharing - Collecting our DAH Thoughts
Sharing  - Collecting our DAH ThoughtsSharing  - Collecting our DAH Thoughts
Sharing - Collecting our DAH ThoughtsShawn Day
 
Presenting Spatial Data: Whats so spatial about spatial?
Presenting Spatial Data: Whats so spatial about spatial?Presenting Spatial Data: Whats so spatial about spatial?
Presenting Spatial Data: Whats so spatial about spatial?Shawn Day
 
Digital Project Management for Digital Humanities
Digital Project Management for Digital HumanitiesDigital Project Management for Digital Humanities
Digital Project Management for Digital HumanitiesShawn Day
 
Getting Intimate with Your Data - Working Our Way out of the Lab
Getting Intimate with Your Data - Working Our Way out of the LabGetting Intimate with Your Data - Working Our Way out of the Lab
Getting Intimate with Your Data - Working Our Way out of the LabShawn Day
 
Does DH Scholarship Take Place in the Lab?
Does DH Scholarship Take Place in the Lab?Does DH Scholarship Take Place in the Lab?
Does DH Scholarship Take Place in the Lab?Shawn Day
 
How do you know what you are looking for?
How do you know what you are looking for?How do you know what you are looking for?
How do you know what you are looking for?Shawn Day
 
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital Objects
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital ObjectsICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital Objects
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital ObjectsShawn Day
 
New Forms of Collaboration in Humanities Research
New Forms of Collaboration in Humanities ResearchNew Forms of Collaboration in Humanities Research
New Forms of Collaboration in Humanities ResearchShawn Day
 

Plus de Shawn Day (20)

Place of Irish Craft Beer - August 2018
Place of Irish Craft Beer - August 2018Place of Irish Craft Beer - August 2018
Place of Irish Craft Beer - August 2018
 
Digital Tools, Trends and Methodologies in the Humanities and Social Sciences
Digital Tools, Trends and Methodologies in the Humanities and Social SciencesDigital Tools, Trends and Methodologies in the Humanities and Social Sciences
Digital Tools, Trends and Methodologies in the Humanities and Social Sciences
 
Digital Narratives for Transylvania DH
Digital Narratives for Transylvania DHDigital Narratives for Transylvania DH
Digital Narratives for Transylvania DH
 
Data Vis for Transylvania DH
Data Vis for Transylvania DHData Vis for Transylvania DH
Data Vis for Transylvania DH
 
Requirements Engineering for the Humanities
Requirements Engineering for the HumanitiesRequirements Engineering for the Humanities
Requirements Engineering for the Humanities
 
Google Tools for Digital Humanities Scholars
Google Tools for Digital Humanities ScholarsGoogle Tools for Digital Humanities Scholars
Google Tools for Digital Humanities Scholars
 
DH In the Archives
DH In the ArchivesDH In the Archives
DH In the Archives
 
Putting Your Data on a Map
Putting Your Data on a MapPutting Your Data on a Map
Putting Your Data on a Map
 
Comparing and Considering: Exhibit vs Palladio
Comparing and Considering: Exhibit vs PalladioComparing and Considering: Exhibit vs Palladio
Comparing and Considering: Exhibit vs Palladio
 
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story Map
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story MapTools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story Map
Tools for Digital Humanities Scholarly Innovation: Timemap, Juxtapose, Story Map
 
Creating Narrative with Digital Objects
Creating Narrative with Digital ObjectsCreating Narrative with Digital Objects
Creating Narrative with Digital Objects
 
Digital Project Success
Digital Project SuccessDigital Project Success
Digital Project Success
 
Sharing - Collecting our DAH Thoughts
Sharing  - Collecting our DAH ThoughtsSharing  - Collecting our DAH Thoughts
Sharing - Collecting our DAH Thoughts
 
Presenting Spatial Data: Whats so spatial about spatial?
Presenting Spatial Data: Whats so spatial about spatial?Presenting Spatial Data: Whats so spatial about spatial?
Presenting Spatial Data: Whats so spatial about spatial?
 
Digital Project Management for Digital Humanities
Digital Project Management for Digital HumanitiesDigital Project Management for Digital Humanities
Digital Project Management for Digital Humanities
 
Getting Intimate with Your Data - Working Our Way out of the Lab
Getting Intimate with Your Data - Working Our Way out of the LabGetting Intimate with Your Data - Working Our Way out of the Lab
Getting Intimate with Your Data - Working Our Way out of the Lab
 
Does DH Scholarship Take Place in the Lab?
Does DH Scholarship Take Place in the Lab?Does DH Scholarship Take Place in the Lab?
Does DH Scholarship Take Place in the Lab?
 
How do you know what you are looking for?
How do you know what you are looking for?How do you know what you are looking for?
How do you know what you are looking for?
 
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital Objects
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital ObjectsICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital Objects
ICRH Winter Institute Strand 4 Day 1 - Building Narratives with Digital Objects
 
New Forms of Collaboration in Humanities Research
New Forms of Collaboration in Humanities ResearchNew Forms of Collaboration in Humanities Research
New Forms of Collaboration in Humanities Research
 

Dernier

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Dernier (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

Structured Data Presentation

  • 1. An Introduction to Structured Data Presentation New Perspectives on Old Data Shawn Day Digital Humanities Observatory 14 November 2012 http://www.slideshare.net/shawnday/structured-data-presentation
  • 2. Objective To appreciate the variety of structured data presentation tools available to digital humanities scholars and to be able to judge between them.
  • 3. Agenda Data Presentation versus Data Analysis? The Readings Exhibit Thesis The Data Vis Challenge to the Humanities Products to be have an awareness of Hands On Install and Config Exhibit OMEKA?
  • 4. The Two Faces of Data Visualisation One of the keys to good visualization is understanding what your immediate (and longer term) goals are. Are you visualizing data to understand what’s in it, or are you trying to communicate meaning to others? You - Visualisation for Data Analysis Others - Visualisation for Presentation
  • 5. Information Visualisation: Challenge for the Humanities To use the vast stores of digitised data we are collecting we need to develop a digital fluency Access Exploration Visualisation Analysis Collabouration
  • 6. The Challenges Developing new genres for complex info presentation creating a literacy that has same rigour and richness as current scholarship expanding text-based pedagogy to include simulation, animation and spatial and geographic representation
  • 7. The Opportunity Balance complexity with conciseness Balance accuracy with essence Speak authoritatively, yet inspire exploration and personal insight
  • 8. A Short History Originated in Computer Science Disseminated into broader scientific realm A late comer to the humanities Tufte: concise - clear - accurate
  • 9. William Playfair (1758 - 1823) bar chart pie chart time series This is a file from the Wikimedia Commons.
  • 10. John Snow (1813 - 1858) Dot Plot Spatial Analysis This is a file from the Wikimedia Commons
  • 11. Charles Minard (1781 - 1870) Flow Diagram Multi-Vector Information Visualisation This is a file from the Wikimedia Commons
  • 12. Tools for collection are far more successful to date than those for exploration
  • 13. New Influences Simulation - 3D What if? Monitor - Real time data Collabouration - Many Eyes
  • 14. The Challenges to the Use of Visualisation Too Easy to confuse, miscommunicate or downright lie Break or lack basic visual design principles Fail to understand the data, the audience or the problem being solved Fail to appreciate the visceral or emotional power of graphics Lack of technical skills in this domain
  • 15. Structured Data Presentation Tools (a tiny subset) Webservices Frameworks TimeFlow Gephi Google Fusion Tables Exhibit (Exercise) Many Eyes GraphViz Prefuse Hosted D3 Omeka (Omeka) Processing
  • 21. Setup and Preparation Do Not Use Safari - Firefox or Chrome should be X fine You can find instructions at: http://myeye.ie/ftp1/ exhibit/recipe.txt Need to copy datafiles: http://myeye.ie/ftp1/exhibit/nobelists.js?action=raw http://myeye.ie/ftp1/exhibit/index1.html
  • 22. Background on Exhibit Exhibit was developed at MIT to provide a lightweight framework for the presentation, searching and faceted browsing of digital collections. Exhibit lets you easily create web pages with advanced text search and filtering functionalities, with interactive maps, timelines, and other visualizations
  • 23. So What?... Little programming (JavaScript Template); No database (JSON text); a series of useful ‘instantly interactive’ visualisations.
  • 24. Background http://www.simile-widgets.org/exhibit/ A couple examples… Canadian Network for Economic History Comox Valley Crime Stoppers Research at the DHO DHO: Discovery
  • 25. Exhibit in a Nutshell
  • 26. The Simplest Exhibit <html> ! <head> ! ! <title>MIT Nobel Prize Winners</title> ! ! <link href="nobelists.js" type="application/json" rel="exhibit/data" /> ! ! <script src=http://static.simile.mit.edu/exhibit/api-2.0/exhibit-api.js type="text/javascript"></ script> ! <style></style> ! </head> ! <body> ! ! <h1>MIT Nobel Prize Winners</h1> ! ! <table width="100%”> ! ! <tr valign="top”> ! ! <td ex:role="viewPanel”><div ex:role="view"></div></td><td width="25%”>browsing controls here… </ td></tr> </table> </body> </html>
  • 27. The Data { "items" : [ { type : "Nobelist", label : "Burton Richter", ! ! ! latlng: "42.359089,-71.093412", discipline : "Physics", shared : "yes", "last-name" : "Richter", "nobel-year" : "1976", relationship : "alumni", "co-winner" : "Samuel C.C. Ting", "relationship-detail" : "MIT S.B. 1952, Ph.D. 1956", imageURL : "http://nobelprize.org/nobel_prizes/ physics/laureates/1976/richter_thumb.jpg" }, ……… ] }
  • 29. Add Faceted Browsing Explore data in context Filter data by attributes
  • 30. Faceted Browsing Code <div ex:role="facet" ex:expression=".discipline" ex:facetLabel="Discipline"></div> <div ex:role="facet" ex:expression=".relationship" ex:facetLabel="Relationship"></div> <div ex:role="facet" ex:expression=".shared" ex:facetLabel="Shared?"></div> <div ex:role="facet" ex:expression=".deceased" ex:facetLabel="Deceased?"></div>
  • 32. Search Code <div ex:role="facet" ex:facetClass="TextSearch"></div>
  • 33. Add a Table View
  • 34. Table Code <div ex:role="exhibit-view” ex:viewClass="Exhibit.TabularView” ex:columns=".label, .imageURL, .discipline, .nobel- year, .relationship-detail” ex:columnLabels="name, photo, discipline, year, relationship with MIT” ex:columnFormats="list, image, list, list, list” ex:sortColumn="3” ex:sortAscending="false"> </div>
  • 36. Timeline Code <script src="http://static.simile.mit.edu/exhibit/ extensions-2.0/time/time-extension.js" type="text/javascript"></script> + <div ex:role="view" ex:viewClass="Timeline" ex:start=".nobel-year" ex:colorKey=".discipline"> </div>
  • 37. Add a Map View
  • 38. Wrapup: Exhibit Pros Cons Simple Limited Scalability Lightweight Some cross-browser No server required issues A host of Restrictions on Look visualisations and Feel Embeddable in other Extensive systems - customisation means ExhibitPress getting into code Here comes Exhibit 3
  • 39. Moving Beyond with Exhibit Ensemble Project Advanced Tutorial: http://ensemble.ljmu.ac.uk/q/calbooklet
  • 40. OMEKA for Curated Collections http://omeka.net
  • 41. Omeka Basics OAI/PMH Exhibit Metadata Page CSV Section Page Section Page etc... Page Collection(s) Metadata Tag(s) Type Metadata Tag(s) Type Metadata Tag(s) Type Item Item Item Representations Representations Representations
  • 42. OMEKA http://iridium.omeka.net/exhibits/show/ carlingford/day1 http://www.omeka.net/dashboard Omeka.org versus Omeka.net Sign-Up at: http://www.omeka.net
  • 43. Where to go next http://datajournalism.stanford.edu/ Bamboo - DIRT (Digital Research Toolkit) Timeline Tools Visualisation in Education Visual Complexity
  • 44. Academic Visualisation? There’s lots of published papers out there ...what can you do with them? http://www.autodeskresearch.com/projects/citeology
  • 45. The Life on An Idea through Citations
  • 46.
  • 47. Data Visualisation Lessons from Tufte 1. Show the Data 2. Provoke Thought about the Subject at Hand 3. Avoid Distorting the Data 4. Present Many Numbers in a Small Space 5. Make Large Datasets Coherent 6. Encourage Eyes to Compare Data 7. Reveal Data at Several Levels of Detail 8. Serve a Reasonably Clear Purpose 9. Be Closely Integrated with Statistical and Verbal Descriptions of the Dataset
  • 48. What Visual Techniques Exist? Connecting your data with the right visualisation What is your message? How do we know what we might use? Start with your Exploratory/Research/Analytical Environment (last seminar) How do visuals fit into your narrative?
  • 49. What Visual Techniques Exist? Connecting your data with the right visualisation
  • 50. Thanks for your attention