LinkedReproducibility

Hashtag: #LinkedReproducibility

Note

This page (linkedreproducibility.rst) is licensed with CC0 1.0 (Public Domain).

Please do implement these ideas and specifications.

@westurner

StructuredPremises: Premises as structured data

LinkedMetaAnalyses

RDF Example

Linked Data + Reproducibility => Linked Reproducibility

Reproducibility ---\___  Linked Reproducibility
Linked Data     ---/

In Turtle RDF syntax:

:LinkedData rdf:type skos:Concept ;
    rdfs:label "Linked Data"@en ;
    schema:name "Linked Data"@en ;
    owl:sameAs <https://en.wikipedia.org/wiki/Linked_data> ;
    owl:sameAs <http://dbpedia.org/page/Linked_data> ;

    owl:sameAs <http://ja.dbpedia.org/resource/Linked_data>
    owl:sameAs <http://es.dbpedia.org/resource/Datos_enlazados> ;
    owl:sameAs <http://fr.dbpedia.org/resource/Web_des_donn%C3%A9es> ;
    owl:sameAs <http://nl.dbpedia.org/resource/Linked_data>
    owl:sameAs <http://ko.dbpedia.org/resource/링크드_데이터> ;
    owl:sameAs <http://wikidata.org/entity/Q515701> ;
    .

:Reproducibility a skos:Concept ;
    rdfs:label "Reproducibility"@en ;
    schema:name "Reproducibility"@en ;
    owl:sameAs <https://en.wikipedia.org/wiki/Reproducibility> ;
    owl:sameAs <http://dbpedia.org/page/Reproducibility> ;
    .

:LinkedReproducibility a skos:Concept ;
    rdfs:label "Linked Reproducibility"@en ;
    schema:name "Linked Reproducibility"@en ;
    skos:related [ :LinkedData, :Reproducibility ] ;
    .

CSV, CSVW, and metadata rows

  • CSV – Comma Separated Values
  • CSVW – CSV on the Web ( RDF, JSON, JSON-LD )
  • RDF – Resource Description Framework
    • A two dimensional spreadsheet containing just data values (e.g. CSV) is a projection of an RDF graph which can be expressed as CSVW.

A classic data table with 1 metadata header row (column label):

Table with 1 metadata header row
column label sample date width height
  1 2016-06-19T06:28:49-0500 20.0 30.0
  2 2016-06-19T06:29:22-0500 40.0 50.0
  3 2016-06-19T06:29:48-0500 60.0 70.0

A data table with 7 metadata header rows (column label, property URI path, DataType, unit, accuracy, precision, significant figures):

Table with 7 metadata header rows
column label sample date width height
property URI path schema.org/name schema.org/dateCreated [schema.org/height, schema.org/value] [schema.org/width, schema.org/value]
schema.org/DataType schema.org/Integer schema.org/Date schema.org/Float schema.org/Float
Unit     unit:Meter unit:Meter
accuracy        
precision        
significant figures     *.1 *.1
  1 2016-06-19T06:28:49-0500 20.0 30.0
  2 2016-06-19T06:29:22-0500 40.0 50.0
  3 2016-06-19T06:29:48-0500 60.0 70.0

References

  • TODO: @westurner
    • reddit
    • twitter
    • hackernews