SlideShare ist ein Scribd-Unternehmen logo
1 von 50
THE STATISTICS OF
STAIRWAY TO HEAVEN
Albert Meroño-Peñuela (and many others), KMi, March 9th 2017
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
Vrije Universiteit Amsterdam
3
ME
• Postdoc researcher at VU University Amsterdam,
Knowledge Representation & Reasoning
• Interfaces between the Digital Humanities and the
Semantic Web
• Enabling intelligent data preprocessing and universal
access to Linked Data
• Ontologies, Linked Data, Data Integration, APIs,
repeatability, provenance
Vrije Universiteit Amsterdam
4
WHY THIS TALK?
• What is Digital Humanities?
• "to study human culture in a more scientific way”
• Albert: “doing humanities is exactly equal to doing
science”
• Repeatability
• Hypothesis testing
• Pragmatic, clean, idealized
• Jacky: “doing humanities is completely different to
doing science”
• Interpretative approach, relativistic
• Give value to argumentation and vagueness instead of truth
• Focus on the questions we do ask
• https://storify.com/ingorohlfing/overly-honest-methods-in-science
• Is doing humanities exactly equal to doing science?
‹#› Het begint met een idee
QUANTITATIVE HISTORY
ON THE SEMANTIC WEB
Vrije Universiteit Amsterdam
6
THE (HISTORICAL) KNOWLEDGE DISCOVERY
PROCESS
VolumeVariety
Vrije Universiteit Amsterdam
7
DATA PREPARATION
Present data = high volume
Historical data = high variety
 Multiple legacy (tabular) formats
 Diverse identity, unity, rigidity and dependence
Preparing them to gain knowledge is expensive
 Manual data munging
 Hardly reproducible
Vrije Universiteit Amsterdam
8
DATA PREPARATION
This ‘data preparation’ step can take up to 60% 80% of the total work
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
We do this repeatedly for the same datasets!
Vrije Universiteit Amsterdam
10
CEDAR / CLARIAH
?
1795
1830
1889
1930
1971
Vrije Universiteit Amsterdam
11
TOWARDS 5-STAR HISTORICAL STATISTICAL DATA
>4 years ago
4 years ago
Vrije Universiteit Amsterdam
12
DATA MODELS: CSVW + RDF DATA CUBE
Semi-automatic
Generic
Domain independent
Microdata =
CSVW
[COW]
Macrodata = RDF
Data Cube [QBer]
[TabLinker]
Credits to Rinke Hoekstra
Vrije Universiteit Amsterdam
LSD DIMENSIONS
http://lsd-dimensions.org/
Index of statistical dimensions and associated concept schemes on
the Web
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
New code lists
• HISCO
http://historyofwork.iisg.nl/ Credits to Richard Zijdeman
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
New code lists
• Gemeentegeschiedenis.nl
http://www.gemeentegeschiedenis.nl/ Credits to Ivo Zandhuis
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
New code lists
http://licr.io/ Credits to Ashkan Ashkpour
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
Concept Drift
Upper ontologies
(HISCO, AC)
Year-
dependent
ontologies
? ?
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
3. Changing schemas over time
Do Linked Data vocabularies evolve in a predictable way?
1. Performant models can be learned from past
vocabulary versions
2. Can be used to pinpoint resources susceptible
to change, radical changes
3. Their predictive power depends on the
smoothness of changes between versions
4. 39.8% of the LOD vocabularies are highly
predictable
Snapshot data is insufficient
Fine-grained, commit-based stories (ALIGNED,
PERICLES, later in this presentation)
S L I D E 2 1 O F 1 3
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
4. Dubious data quality
Linked Edit Rules enable sharing knowledge to assess quality of
Linked Statistical Data
How to communicate the results of LER for
further processing?
Vrije Universiteit Amsterdam
23
A BASIC WEB SYSTEMS COMMUNICATION TOOLKIT
1. Endpoint location is volatile
Names encapsulate semantics of operations → Should be
meaningless, just as email addresses
HTTP : http://example.org/canihasdata
2. Consensus on data semantics is necessary
Simple object exchange format + 15 years of Web ontology
development to semantically describe data
JSON+LD : [{ "@id": "eg:Albert",
"rdf:type": [{ "@id": "foaf:Person" }]}]
Vrije Universiteit Amsterdam
24
LINKED DATA NOTIFICATIONS
https://www.w3.org/TR/ldn/
Thanks to Sarven Capadisli
Vrije Universiteit Amsterdam
25
IMPLEMENTATIONS
http://pyldn.amp.ops.labs.vu.nl/
https://github.com/albertmeronyo/pyldn/
R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
http://scry.rocks/
• Custom data processing in
SPARQL needed in multiple
domains
• SPARQL cannot be extended
in a standard-compliant way
PREFIX : <http://scry.rocks/example/>
PREFIX scry: <http://scry.rocks/>
PREFIX impute: <http://scry.rocks/math/impute?>
PREFIX mean: <http://scry.rocks/math/mean?>
PREFIX sd: <http://scry.rocks/math/stdev?>
SELECT ?obs ?dim ?imputed_val WHERE {
?obs a qb:Observation .
?dim a qb:DimensionProperty|qb:MeasureProperty .
FILTER NOT EXISTS { ?obs ?dim ?val .}
?other_obs ?dim ?other_val .
SERVICE <http://sparql.scry.rocks/> {
SELECT ?imputed_val {
GRAPH ?g1 {impute:v scry:input ?other_val ;
scry:output ?imputed_val .}
}
}
}
Delegation of non-
standard function to
secondary endpoint
Credits to Bas Stringer
‹#› Het begint met een idee
27 Het begint met een idee
 One .rq file for SPARQL query
 Good support of query curation
processes
> Versioning
> Branching
> Clone-pull-push
 Web-friendly features!
> One URI per query
> Uniquely identifiable
> De-referenceable
(raw.githubusercontent.com)
27 Faculty / department / title presentation
GITHUB AS A HUB OF
SPARQL QUERIES
‹#› Het begint met een idee
28 Het begint met een idee
http://sparql2git.amp.ops.labs.vu.nl/
‹#› Het begint met een idee
29 Het begint met een idee
 Cousin of BASIL in a SALAD 
 Same basic principle: 1 SPARQL query = 1
API operation
 Automatically builds Swagger spec and UI
from SPARQL
But:
 External query management
 Organization of SPARQL queries in the
GitHub repo matches organization of the
API
 Thin layer – nothing stored server-side
 Maps
> GitHub API
> Swagger spec
29 Faculty / department / title presentation
Vrije Universiteit Amsterdam
30
MAPPING GITHUB AND SWAGGER
Vrije Universiteit Amsterdam
31
SPARQL DECORATOR SYNTAX
Vrije Universiteit Amsterdam
32
THE GRLC SERVICE
 Assuming your repo is at https://github.com/:owner/:repo
and your grlc instance at :host,
> http://:host/:owner/:repo/spec returns the JSON swagger spec
> http://:host/:owner/:repo/api-docs returns the swagger UI
> http://:host/:owner/:repo/:operation?p_1=v_1...p_n=v_n calls
operation with specifiec parameter values
> Uses BASIL’s SPARQL variable name convention for query parameters
 Sends requests to
> https://api.github.com/repos/:owner/:repo to look for SPARQL queries and their
decorators
> https://raw.githubusercontent.com/:owner/:repo/master/file.rq to dereference
queries, get the SPARQL, and parse it
Vrije Universiteit Amsterdam
33
SPICED-UP SWAGGER UI
Vrije Universiteit Amsterdam
34
EVALUATION – USE CASES
 CEDAR: Access to census data for
historians
> Hides SPARQL
> Allows them to fill query parameters
through forms
> Co-existence of SPARQL and non-SPARQL
clients
 CLARIAH - Born Under a Bad Sign:
Do prenatal and early-life
conditions have an impact on
socioeconomic and health
outcomes later in life? (uses 1891
Canada and Sweden Linked Census Data)
> Reduction of coupling between SPARQL
libs and R
> Shorter R code – input stream as CSV
‹#› Het begint met een idee
WHAT DOES A KNOWLEDGE
GRAPH SOUND LIKE?
(OR: MUSIC IS A GRAPH)
Vrije Universiteit Amsterdam
 Maybe not that different…
36
SEMANTIC WEB AND THE HUMANITIES
Vrije Universiteit Amsterdam
37
ISWC 2013 JAM SESSION
Jam’s “metadata”
Vrije Universiteit Amsterdam
Besides how awesome this is…
 The jam became global (i.e. de-referenceable URIs from
anywhere) rather than local
> But any video stream would have been more accurate (for humans)
 The jam became machine readable
> But not all of it
 Digital music as Linked Data?
38
REPRESENTING MUSIC IN RDF
Vrije Universiteit Amsterdam
 Music representation format which is 100% digital
> (i.e. leaving nothing to analog signals  actual instruments)
 MIDI (Musical Instrument Digital Interface)
> Universal synthesizer interface
> Roland (I. Kakehashi), Yamaha, Korg, Kawai (1981)
> Digital, fine-grained representation of musical tracks and events
> Wide range of controllers and instruments
39
WEEKEND EXPERIMENT
Vrije Universiteit Amsterdam
40
MIDI
Vrije Universiteit Amsterdam
41
MIDI2RDF
https://github.com/albertmeronyo/midi2rdf
Vrije Universiteit Amsterdam
 Music representation format which is
> 100% digital (i.e. leaving nothing to analog signals)
> Secundary list
 MIDI (Musical Instrument Digital Interface)
> Universal synthesizer interface
> Roland (I. Kakehashi), Yamaha, Korg, Kawai (1981)
> Digital, fine-grained representation of musical events
> Wide range of controllers and instruments
42
WEEKEND EXPERIMENT
Vrije Universiteit Amsterdam
 midi2rdf
> Any MIDI to an RDF midi-comptabile representation
> All MIDI resources get URIs (can link, be linked, de-referenced)
> Music is a graph!
 rdf2midi
> Round trip conversion
> Lossless!
> MIDI subseteq RDF
 playrdf.sh
> RDF files can be ‘played’ without data loss
> Demo
43
LOSSLESS CONVERSION & STREAMING
Vrije Universiteit Amsterdam
Vrije Universiteit Amsterdam
http://midi-ld.github.io/
45
MIDI LINKED DATA
6B
triples!!!!!11one
Vrije Universiteit Amsterdam
46
MIDI LINKED DATA
Vrije Universiteit Amsterdam
47
CONCLUSIONS
 Semantic Web and Digital Humanities: to science, or not to
science?
 Data preparation = 80% of work
 Linked Data based solutions
> Repeatable (non-disposable) research
> Statistical dimension & codelist enrichment
> Git for versioning and provenance
> Distributed notifications
> Universal Web APIs for modular Linked Data consuming applications
 MIDI Linked Data
> Your ideas & contribs most welcome
 About those statistics of Stairway to Heaven…
Vrije Universiteit Amsterdam
> Albert Meroño-Peñuela. “Humanists And Scientists: More Alike Than Different”. eHumanities Magazine,
number 7, February 2016 (HTML)
> Albert Meroño-Peñuela, Rinke Hoekstra. “grlc Makes GitHub Taste Like Linked Data APIs”. SALAD 2016 —
Services and Applications over Linked Data APIs and Data. International workshop, ESWC 2016, May 29th,
Heraklion, Crete, Greece (2016). (PDF)
> Rinke Hoekstra, Albert Meroño-Peñuela, Kathrin Dentler, Auke Rijpma, Richard Zijdeman, Ivo Zandhuis. “An
Ecosystem for Linked Humanities Data”. In: Proceedings of the 1st Workshop on Humanities in the SEmantic
web (WHiSE 2016). ESWC 2016, May 29th, Heraklion, Crete, Greece (2016). (PDF)
> Albert Meroño-Peñuela, Rinke Hoekstra. “The Song Remains the Same: Lossless Conversion and Streaming of
MIDI to RDF and Back”. In: 13th Extended Semantic Web Conference (ESWC 2016), posters and demos track.
May 29th — June 2nd, Heraklion, Crete, Greece (2016). (PDF)
> Albert Meroño-Peñuela. “Refining Statistical Data on the Web”. Vrije Universiteit Amsterdam (2016) (Amazon)
(VU-DARE)
> Albert Meroño-Peñuela, Christophe Guéret, Stefan Schlobach. “Linked Edit Rules: A Web Friendly Way of
Checking Quality of RDF Data Cubes”. Proceedings of the 3rd International Workshop on Semantic Statistics
(SemStats 2015), ISWC 2015, Bethlehem, PA, USA (2015). (PDF)
> Bas Stringer, Albert Meroño-Peñuela, Antonis Loizou, Sanne Abeln, Jaap Heringa. “To SCRY Linked Data:
Extending SPARQL the Easy Way”. Diversity++ workshop, ISWC 2015, Bethlehem, PA, USA (2015). (PDF)
> Albert Meroño-Peñuela, Ashkan Ashkpour, Marieke van Erp, Kees Mandemakers, Leen Breure, Andrea
Scharnhorst, Stefan Schlobach, Frank van Harmelen. “Semantic Technologies for Historical Research: A
Survey”. Semantic Web — Interoperability, Usability, Applicability, 6(6), pp. 539–564. IOS Press (2015).
> Albert Meroño-Peñuela, Ashkan Ashkpour, Christophe Guéret, Stefan Schlobach. “CEDAR: The Dutch
Historical Censuses as Linked Open Data”. Semantic Web — Interoperability, Usability, Applicability, 8(2), pp.
297–310. IOS Press (2015).48
PUBLICATIONS
‹#› Het begint met een idee
THANK YOU!
@albertmeronyo
DATALEGEND.NET
CLARIAH.NL
49
‹#› Het begint met een idee
THANK YOU!
@albertmeronyo
DATALEGEND.NET
CLARIAH.NL
50

Weitere ähnliche Inhalte

Ähnlich wie The Statistics of Stairway to Heaven: A Semantic Story About Digital Humanities

Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryRuben Schalk
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph IntroductionSören Auer
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebVictor de Boer
 
Metadata for digital humanities
Metadata for digital humanities Metadata for digital humanities
Metadata for digital humanities Getaneh Alemu
 
Making social science more reproducible by encapsulating access to linked data
Making social science more reproducible by encapsulating access to linked dataMaking social science more reproducible by encapsulating access to linked data
Making social science more reproducible by encapsulating access to linked dataAlbert Meroño-Peñuela
 
Stream Reasoning: Where we got so far. Oxford 2010.1.18
Stream Reasoning: Where we got so far. Oxford 2010.1.18Stream Reasoning: Where we got so far. Oxford 2010.1.18
Stream Reasoning: Where we got so far. Oxford 2010.1.18Emanuele Della Valle
 
Knowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectKnowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectEnrico Daga
 
RDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsRDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsJean-Paul Calbimonte
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic WebIvan Herman
 
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Leon Wessels
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Datahorvadam
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Datahorvadam
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Asa Letourneau
 
grlc Makes GitHub Taste Like Linked Data APIs
grlc Makes GitHub Taste Like Linked Data APIsgrlc Makes GitHub Taste Like Linked Data APIs
grlc Makes GitHub Taste Like Linked Data APIsAlbert Meroño-Peñuela
 
Use r 2013 tutorial - r and cloud computing for higher education and research
Use r 2013   tutorial - r and cloud computing for higher education and researchUse r 2013   tutorial - r and cloud computing for higher education and research
Use r 2013 tutorial - r and cloud computing for higher education and researchkchine3
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data VisualizationLaura Po
 
Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.Enrico Daga
 

Ähnlich wie The Statistics of Stairway to Heaven: A Semantic Story About Digital Humanities (20)

Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University Library
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph Introduction
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic Web
 
Metadata for digital humanities
Metadata for digital humanities Metadata for digital humanities
Metadata for digital humanities
 
Making social science more reproducible by encapsulating access to linked data
Making social science more reproducible by encapsulating access to linked dataMaking social science more reproducible by encapsulating access to linked data
Making social science more reproducible by encapsulating access to linked data
 
Stream Reasoning: Where we got so far. Oxford 2010.1.18
Stream Reasoning: Where we got so far. Oxford 2010.1.18Stream Reasoning: Where we got so far. Oxford 2010.1.18
Stream Reasoning: Where we got so far. Oxford 2010.1.18
 
Linked data and voyager
Linked data and voyagerLinked data and voyager
Linked data and voyager
 
Knowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectKnowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything Project
 
CBS CEDAR Presentation
CBS CEDAR PresentationCBS CEDAR Presentation
CBS CEDAR Presentation
 
A hint of_mint
A hint of_mintA hint of_mint
A hint of_mint
 
RDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsRDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of Semantics
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
 
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104
 
grlc Makes GitHub Taste Like Linked Data APIs
grlc Makes GitHub Taste Like Linked Data APIsgrlc Makes GitHub Taste Like Linked Data APIs
grlc Makes GitHub Taste Like Linked Data APIs
 
Use r 2013 tutorial - r and cloud computing for higher education and research
Use r 2013   tutorial - r and cloud computing for higher education and researchUse r 2013   tutorial - r and cloud computing for higher education and research
Use r 2013 tutorial - r and cloud computing for higher education and research
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data Visualization
 
Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.
 

Mehr von Albert Meroño-Peñuela

List.MID: A MIDI-Based Benchmark for RDF Lists
List.MID: A MIDI-Based Benchmark for RDF ListsList.MID: A MIDI-Based Benchmark for RDF Lists
List.MID: A MIDI-Based Benchmark for RDF ListsAlbert Meroño-Peñuela
 
Modelling and Querying Lists in RDF. A Pragmatic Study
Modelling and Querying Lists in RDF. A Pragmatic StudyModelling and Querying Lists in RDF. A Pragmatic Study
Modelling and Querying Lists in RDF. A Pragmatic StudyAlbert Meroño-Peñuela
 
What can I expect from an academic career? Valuable skills
What can I expect from an academic career? Valuable skillsWhat can I expect from an academic career? Valuable skills
What can I expect from an academic career? Valuable skillsAlbert Meroño-Peñuela
 
Automatic Query-Centric API for Routine Access to Linked Data
Automatic Query-Centric API for Routine Access to Linked DataAutomatic Query-Centric API for Routine Access to Linked Data
Automatic Query-Centric API for Routine Access to Linked DataAlbert Meroño-Peñuela
 
How does a knowledge graph sound like? (or: music is a graph)
How does a knowledge graph sound like? (or: music is a graph)How does a knowledge graph sound like? (or: music is a graph)
How does a knowledge graph sound like? (or: music is a graph)Albert Meroño-Peñuela
 
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data Cube
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data CubeLSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data Cube
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data CubeAlbert Meroño-Peñuela
 
Non-Temporal Orderings for Extensional Concept Drift
Non-Temporal Orderings for Extensional Concept DriftNon-Temporal Orderings for Extensional Concept Drift
Non-Temporal Orderings for Extensional Concept DriftAlbert Meroño-Peñuela
 
Detecting and Reporting Extensional Concept Drift in Statistical Linked Data
Detecting and Reporting Extensional Concept Drift in Statistical Linked DataDetecting and Reporting Extensional Concept Drift in Statistical Linked Data
Detecting and Reporting Extensional Concept Drift in Statistical Linked DataAlbert Meroño-Peñuela
 

Mehr von Albert Meroño-Peñuela (14)

List.MID: A MIDI-Based Benchmark for RDF Lists
List.MID: A MIDI-Based Benchmark for RDF ListsList.MID: A MIDI-Based Benchmark for RDF Lists
List.MID: A MIDI-Based Benchmark for RDF Lists
 
Modelling and Querying Lists in RDF. A Pragmatic Study
Modelling and Querying Lists in RDF. A Pragmatic StudyModelling and Querying Lists in RDF. A Pragmatic Study
Modelling and Querying Lists in RDF. A Pragmatic Study
 
What can I expect from an academic career? Valuable skills
What can I expect from an academic career? Valuable skillsWhat can I expect from an academic career? Valuable skills
What can I expect from an academic career? Valuable skills
 
The MIDI Linked Data Cloud
The MIDI Linked Data CloudThe MIDI Linked Data Cloud
The MIDI Linked Data Cloud
 
Automatic Query-Centric API for Routine Access to Linked Data
Automatic Query-Centric API for Routine Access to Linked DataAutomatic Query-Centric API for Routine Access to Linked Data
Automatic Query-Centric API for Routine Access to Linked Data
 
Historical Reasoning on the Web
Historical Reasoning on the WebHistorical Reasoning on the Web
Historical Reasoning on the Web
 
How does a knowledge graph sound like? (or: music is a graph)
How does a knowledge graph sound like? (or: music is a graph)How does a knowledge graph sound like? (or: music is a graph)
How does a knowledge graph sound like? (or: music is a graph)
 
What Is Linked Historical Data?
What Is Linked Historical Data?What Is Linked Historical Data?
What Is Linked Historical Data?
 
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data Cube
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data CubeLSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data Cube
LSD Dimensions: Use and Reuse of Linked Statistical Data as RDF Data Cube
 
Non-Temporal Orderings for Extensional Concept Drift
Non-Temporal Orderings for Extensional Concept DriftNon-Temporal Orderings for Extensional Concept Drift
Non-Temporal Orderings for Extensional Concept Drift
 
Detecting and Reporting Extensional Concept Drift in Statistical Linked Data
Detecting and Reporting Extensional Concept Drift in Statistical Linked DataDetecting and Reporting Extensional Concept Drift in Statistical Linked Data
Detecting and Reporting Extensional Concept Drift in Statistical Linked Data
 
Semantic Web for the Humanities
Semantic Web for the HumanitiesSemantic Web for the Humanities
Semantic Web for the Humanities
 
Linked Census Data
Linked Census DataLinked Census Data
Linked Census Data
 
Linked Humanities data
Linked Humanities dataLinked Humanities data
Linked Humanities data
 

Kürzlich hochgeladen

Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsSérgio Sacani
 
GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)Areesha Ahmad
 
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS  ESCORT SERVICE In Bhiwan...Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS  ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS ESCORT SERVICE In Bhiwan...Monika Rani
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxMohamedFarag457087
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformationAreesha Ahmad
 
GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)Areesha Ahmad
 
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIACURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIADr. TATHAGAT KHOBRAGADE
 
Stages in the normal growth curve
Stages in the normal growth curveStages in the normal growth curve
Stages in the normal growth curveAreesha Ahmad
 
Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Silpa
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and ClassificationsAreesha Ahmad
 
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxClimate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxDiariAli
 
Exploring Criminology and Criminal Behaviour.pdf
Exploring Criminology and Criminal Behaviour.pdfExploring Criminology and Criminal Behaviour.pdf
Exploring Criminology and Criminal Behaviour.pdfrohankumarsinghrore1
 
module for grade 9 for distance learning
module for grade 9 for distance learningmodule for grade 9 for distance learning
module for grade 9 for distance learninglevieagacer
 
The Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxThe Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxseri bangash
 
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...Scintica Instrumentation
 
FAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceFAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceAlex Henderson
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....muralinath2
 

Kürzlich hochgeladen (20)

Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
 
GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)
 
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS  ESCORT SERVICE In Bhiwan...Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS  ESCORT SERVICE In Bhiwan...
Bhiwandi Bhiwandi ❤CALL GIRL 7870993772 ❤CALL GIRLS ESCORT SERVICE In Bhiwan...
 
Digital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptxDigital Dentistry.Digital Dentistryvv.pptx
Digital Dentistry.Digital Dentistryvv.pptx
 
Conjugation, transduction and transformation
Conjugation, transduction and transformationConjugation, transduction and transformation
Conjugation, transduction and transformation
 
GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)GBSN - Biochemistry (Unit 1)
GBSN - Biochemistry (Unit 1)
 
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIACURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
CURRENT SCENARIO OF POULTRY PRODUCTION IN INDIA
 
Stages in the normal growth curve
Stages in the normal growth curveStages in the normal growth curve
Stages in the normal growth curve
 
Clean In Place(CIP).pptx .
Clean In Place(CIP).pptx                 .Clean In Place(CIP).pptx                 .
Clean In Place(CIP).pptx .
 
Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.
 
Bacterial Identification and Classifications
Bacterial Identification and ClassificationsBacterial Identification and Classifications
Bacterial Identification and Classifications
 
PATNA CALL GIRLS 8617370543 LOW PRICE ESCORT SERVICE
PATNA CALL GIRLS 8617370543 LOW PRICE ESCORT SERVICEPATNA CALL GIRLS 8617370543 LOW PRICE ESCORT SERVICE
PATNA CALL GIRLS 8617370543 LOW PRICE ESCORT SERVICE
 
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptxClimate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
Climate Change Impacts on Terrestrial and Aquatic Ecosystems.pptx
 
Exploring Criminology and Criminal Behaviour.pdf
Exploring Criminology and Criminal Behaviour.pdfExploring Criminology and Criminal Behaviour.pdf
Exploring Criminology and Criminal Behaviour.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
module for grade 9 for distance learning
module for grade 9 for distance learningmodule for grade 9 for distance learning
module for grade 9 for distance learning
 
The Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptxThe Mariana Trench remarkable geological features on Earth.pptx
The Mariana Trench remarkable geological features on Earth.pptx
 
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...
(May 9, 2024) Enhanced Ultrafast Vector Flow Imaging (VFI) Using Multi-Angle ...
 
FAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceFAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical Science
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
 

The Statistics of Stairway to Heaven: A Semantic Story About Digital Humanities

  • 1. THE STATISTICS OF STAIRWAY TO HEAVEN Albert Meroño-Peñuela (and many others), KMi, March 9th 2017
  • 2. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
  • 3. Vrije Universiteit Amsterdam 3 ME • Postdoc researcher at VU University Amsterdam, Knowledge Representation & Reasoning • Interfaces between the Digital Humanities and the Semantic Web • Enabling intelligent data preprocessing and universal access to Linked Data • Ontologies, Linked Data, Data Integration, APIs, repeatability, provenance
  • 4. Vrije Universiteit Amsterdam 4 WHY THIS TALK? • What is Digital Humanities? • "to study human culture in a more scientific way” • Albert: “doing humanities is exactly equal to doing science” • Repeatability • Hypothesis testing • Pragmatic, clean, idealized • Jacky: “doing humanities is completely different to doing science” • Interpretative approach, relativistic • Give value to argumentation and vagueness instead of truth • Focus on the questions we do ask • https://storify.com/ingorohlfing/overly-honest-methods-in-science • Is doing humanities exactly equal to doing science?
  • 5. ‹#› Het begint met een idee QUANTITATIVE HISTORY ON THE SEMANTIC WEB
  • 6. Vrije Universiteit Amsterdam 6 THE (HISTORICAL) KNOWLEDGE DISCOVERY PROCESS VolumeVariety
  • 7. Vrije Universiteit Amsterdam 7 DATA PREPARATION Present data = high volume Historical data = high variety  Multiple legacy (tabular) formats  Diverse identity, unity, rigidity and dependence Preparing them to gain knowledge is expensive  Manual data munging  Hardly reproducible
  • 8. Vrije Universiteit Amsterdam 8 DATA PREPARATION This ‘data preparation’ step can take up to 60% 80% of the total work
  • 9. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B We do this repeatedly for the same datasets!
  • 10. Vrije Universiteit Amsterdam 10 CEDAR / CLARIAH ? 1795 1830 1889 1930 1971
  • 11. Vrije Universiteit Amsterdam 11 TOWARDS 5-STAR HISTORICAL STATISTICAL DATA >4 years ago 4 years ago
  • 12. Vrije Universiteit Amsterdam 12 DATA MODELS: CSVW + RDF DATA CUBE Semi-automatic Generic Domain independent Microdata = CSVW [COW] Macrodata = RDF Data Cube [QBer] [TabLinker] Credits to Rinke Hoekstra
  • 13. Vrije Universiteit Amsterdam LSD DIMENSIONS http://lsd-dimensions.org/ Index of statistical dimensions and associated concept schemes on the Web
  • 14. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
  • 15. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
  • 16. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B
  • 17. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B New code lists • HISCO http://historyofwork.iisg.nl/ Credits to Richard Zijdeman
  • 18. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B New code lists • Gemeentegeschiedenis.nl http://www.gemeentegeschiedenis.nl/ Credits to Ivo Zandhuis
  • 19. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B New code lists http://licr.io/ Credits to Ashkan Ashkpour
  • 20. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B Concept Drift Upper ontologies (HISCO, AC) Year- dependent ontologies ? ?
  • 21. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B 3. Changing schemas over time Do Linked Data vocabularies evolve in a predictable way? 1. Performant models can be learned from past vocabulary versions 2. Can be used to pinpoint resources susceptible to change, radical changes 3. Their predictive power depends on the smoothness of changes between versions 4. 39.8% of the LOD vocabularies are highly predictable Snapshot data is insufficient Fine-grained, commit-based stories (ALIGNED, PERICLES, later in this presentation) S L I D E 2 1 O F 1 3
  • 22. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B 4. Dubious data quality Linked Edit Rules enable sharing knowledge to assess quality of Linked Statistical Data How to communicate the results of LER for further processing?
  • 23. Vrije Universiteit Amsterdam 23 A BASIC WEB SYSTEMS COMMUNICATION TOOLKIT 1. Endpoint location is volatile Names encapsulate semantics of operations → Should be meaningless, just as email addresses HTTP : http://example.org/canihasdata 2. Consensus on data semantics is necessary Simple object exchange format + 15 years of Web ontology development to semantically describe data JSON+LD : [{ "@id": "eg:Albert", "rdf:type": [{ "@id": "foaf:Person" }]}]
  • 24. Vrije Universiteit Amsterdam 24 LINKED DATA NOTIFICATIONS https://www.w3.org/TR/ldn/ Thanks to Sarven Capadisli
  • 26. R E F I N I N G S TAT I S T I C A L D ATA O N T H E W E B http://scry.rocks/ • Custom data processing in SPARQL needed in multiple domains • SPARQL cannot be extended in a standard-compliant way PREFIX : <http://scry.rocks/example/> PREFIX scry: <http://scry.rocks/> PREFIX impute: <http://scry.rocks/math/impute?> PREFIX mean: <http://scry.rocks/math/mean?> PREFIX sd: <http://scry.rocks/math/stdev?> SELECT ?obs ?dim ?imputed_val WHERE { ?obs a qb:Observation . ?dim a qb:DimensionProperty|qb:MeasureProperty . FILTER NOT EXISTS { ?obs ?dim ?val .} ?other_obs ?dim ?other_val . SERVICE <http://sparql.scry.rocks/> { SELECT ?imputed_val { GRAPH ?g1 {impute:v scry:input ?other_val ; scry:output ?imputed_val .} } } } Delegation of non- standard function to secondary endpoint Credits to Bas Stringer
  • 27. ‹#› Het begint met een idee 27 Het begint met een idee  One .rq file for SPARQL query  Good support of query curation processes > Versioning > Branching > Clone-pull-push  Web-friendly features! > One URI per query > Uniquely identifiable > De-referenceable (raw.githubusercontent.com) 27 Faculty / department / title presentation GITHUB AS A HUB OF SPARQL QUERIES
  • 28. ‹#› Het begint met een idee 28 Het begint met een idee http://sparql2git.amp.ops.labs.vu.nl/
  • 29. ‹#› Het begint met een idee 29 Het begint met een idee  Cousin of BASIL in a SALAD   Same basic principle: 1 SPARQL query = 1 API operation  Automatically builds Swagger spec and UI from SPARQL But:  External query management  Organization of SPARQL queries in the GitHub repo matches organization of the API  Thin layer – nothing stored server-side  Maps > GitHub API > Swagger spec 29 Faculty / department / title presentation
  • 32. Vrije Universiteit Amsterdam 32 THE GRLC SERVICE  Assuming your repo is at https://github.com/:owner/:repo and your grlc instance at :host, > http://:host/:owner/:repo/spec returns the JSON swagger spec > http://:host/:owner/:repo/api-docs returns the swagger UI > http://:host/:owner/:repo/:operation?p_1=v_1...p_n=v_n calls operation with specifiec parameter values > Uses BASIL’s SPARQL variable name convention for query parameters  Sends requests to > https://api.github.com/repos/:owner/:repo to look for SPARQL queries and their decorators > https://raw.githubusercontent.com/:owner/:repo/master/file.rq to dereference queries, get the SPARQL, and parse it
  • 34. Vrije Universiteit Amsterdam 34 EVALUATION – USE CASES  CEDAR: Access to census data for historians > Hides SPARQL > Allows them to fill query parameters through forms > Co-existence of SPARQL and non-SPARQL clients  CLARIAH - Born Under a Bad Sign: Do prenatal and early-life conditions have an impact on socioeconomic and health outcomes later in life? (uses 1891 Canada and Sweden Linked Census Data) > Reduction of coupling between SPARQL libs and R > Shorter R code – input stream as CSV
  • 35. ‹#› Het begint met een idee WHAT DOES A KNOWLEDGE GRAPH SOUND LIKE? (OR: MUSIC IS A GRAPH)
  • 36. Vrije Universiteit Amsterdam  Maybe not that different… 36 SEMANTIC WEB AND THE HUMANITIES
  • 37. Vrije Universiteit Amsterdam 37 ISWC 2013 JAM SESSION Jam’s “metadata”
  • 38. Vrije Universiteit Amsterdam Besides how awesome this is…  The jam became global (i.e. de-referenceable URIs from anywhere) rather than local > But any video stream would have been more accurate (for humans)  The jam became machine readable > But not all of it  Digital music as Linked Data? 38 REPRESENTING MUSIC IN RDF
  • 39. Vrije Universiteit Amsterdam  Music representation format which is 100% digital > (i.e. leaving nothing to analog signals  actual instruments)  MIDI (Musical Instrument Digital Interface) > Universal synthesizer interface > Roland (I. Kakehashi), Yamaha, Korg, Kawai (1981) > Digital, fine-grained representation of musical tracks and events > Wide range of controllers and instruments 39 WEEKEND EXPERIMENT
  • 42. Vrije Universiteit Amsterdam  Music representation format which is > 100% digital (i.e. leaving nothing to analog signals) > Secundary list  MIDI (Musical Instrument Digital Interface) > Universal synthesizer interface > Roland (I. Kakehashi), Yamaha, Korg, Kawai (1981) > Digital, fine-grained representation of musical events > Wide range of controllers and instruments 42 WEEKEND EXPERIMENT
  • 43. Vrije Universiteit Amsterdam  midi2rdf > Any MIDI to an RDF midi-comptabile representation > All MIDI resources get URIs (can link, be linked, de-referenced) > Music is a graph!  rdf2midi > Round trip conversion > Lossless! > MIDI subseteq RDF  playrdf.sh > RDF files can be ‘played’ without data loss > Demo 43 LOSSLESS CONVERSION & STREAMING
  • 47. Vrije Universiteit Amsterdam 47 CONCLUSIONS  Semantic Web and Digital Humanities: to science, or not to science?  Data preparation = 80% of work  Linked Data based solutions > Repeatable (non-disposable) research > Statistical dimension & codelist enrichment > Git for versioning and provenance > Distributed notifications > Universal Web APIs for modular Linked Data consuming applications  MIDI Linked Data > Your ideas & contribs most welcome  About those statistics of Stairway to Heaven…
  • 48. Vrije Universiteit Amsterdam > Albert Meroño-Peñuela. “Humanists And Scientists: More Alike Than Different”. eHumanities Magazine, number 7, February 2016 (HTML) > Albert Meroño-Peñuela, Rinke Hoekstra. “grlc Makes GitHub Taste Like Linked Data APIs”. SALAD 2016 — Services and Applications over Linked Data APIs and Data. International workshop, ESWC 2016, May 29th, Heraklion, Crete, Greece (2016). (PDF) > Rinke Hoekstra, Albert Meroño-Peñuela, Kathrin Dentler, Auke Rijpma, Richard Zijdeman, Ivo Zandhuis. “An Ecosystem for Linked Humanities Data”. In: Proceedings of the 1st Workshop on Humanities in the SEmantic web (WHiSE 2016). ESWC 2016, May 29th, Heraklion, Crete, Greece (2016). (PDF) > Albert Meroño-Peñuela, Rinke Hoekstra. “The Song Remains the Same: Lossless Conversion and Streaming of MIDI to RDF and Back”. In: 13th Extended Semantic Web Conference (ESWC 2016), posters and demos track. May 29th — June 2nd, Heraklion, Crete, Greece (2016). (PDF) > Albert Meroño-Peñuela. “Refining Statistical Data on the Web”. Vrije Universiteit Amsterdam (2016) (Amazon) (VU-DARE) > Albert Meroño-Peñuela, Christophe Guéret, Stefan Schlobach. “Linked Edit Rules: A Web Friendly Way of Checking Quality of RDF Data Cubes”. Proceedings of the 3rd International Workshop on Semantic Statistics (SemStats 2015), ISWC 2015, Bethlehem, PA, USA (2015). (PDF) > Bas Stringer, Albert Meroño-Peñuela, Antonis Loizou, Sanne Abeln, Jaap Heringa. “To SCRY Linked Data: Extending SPARQL the Easy Way”. Diversity++ workshop, ISWC 2015, Bethlehem, PA, USA (2015). (PDF) > Albert Meroño-Peñuela, Ashkan Ashkpour, Marieke van Erp, Kees Mandemakers, Leen Breure, Andrea Scharnhorst, Stefan Schlobach, Frank van Harmelen. “Semantic Technologies for Historical Research: A Survey”. Semantic Web — Interoperability, Usability, Applicability, 6(6), pp. 539–564. IOS Press (2015). > Albert Meroño-Peñuela, Ashkan Ashkpour, Christophe Guéret, Stefan Schlobach. “CEDAR: The Dutch Historical Censuses as Linked Open Data”. Semantic Web — Interoperability, Usability, Applicability, 8(2), pp. 297–310. IOS Press (2015).48 PUBLICATIONS
  • 49. ‹#› Het begint met een idee THANK YOU! @albertmeronyo DATALEGEND.NET CLARIAH.NL 49
  • 50. ‹#› Het begint met een idee THANK YOU! @albertmeronyo DATALEGEND.NET CLARIAH.NL 50