SlideShare ist ein Scribd-Unternehmen logo
1 von 61
UNDERSTANDING 
DATA 
By Kingsley Idehen 
Founder & CEO, OpenLink Software
Presentation Goals 
Deconstruct Data 
Understand Data Representation 
Understand Data Access 
Understand Data Integration 
License CC-BY-SA 4.0 (International).
SITUATION ANALYSIS 
License CC-BY-SA 4.0 (International).
EVERY DAY WE HEAR 
License CC-BY-SA 4.0 (International). 
DATA IS 
BIG 
DATA IS 
OPEN 
DATA IS 
LINKED
WE ALMOST NEVERHEAR ABOUT 
License CC-BY-SA 4.0 (International). 
WHAT DATA 
ACTUALLY IS 
HOW DATA IS 
REPRESENTED 
HOW DATA IS 
ACCESSED, 
SHARED, 
& INTEGRATED
Why is Data Important? 
Data is the basis of 
Information, Knowledge, and Wisdom. 
WISDOM 
KNOWLEDGE 
INFORMATION 
DATA 
License CC-BY-SA 4.0 (International).
What is Data? 
Data is how we 
express Observation 
in reusable form. 
License CC-BY-SA 4.0 (International).
What is Observation? 
Observation is the Perception of 
Relationships between Entities. 
YOUR OBSERVATIONS 
PEOPLE, PLACES, MUSIC, DOCUMENTS, CALENDARS, 
DIARIES, ADDRESS BOOKS & MORE... 
License CC-BY-SA 4.0 (International).
What is an Entity? 
An Entity is a Distinctly Identifiable Thing 
License CC-BY-SA 4.0 (International).
How is an Entity Identified (Named) ? 
An Entity is Identified (or named) through the combined effects of 
Identifier based denotation (signification) and document content 
based connotation (description). 
License CC-BY-SA 4.0 (International).
How is an Entity Denoted? 
An Entity is Denoted (Signified) 
through the use of an Identifier. 
License CC-BY-SA 4.0 (International).
What is an Identifier? 
An Identifier is a Sign 
(or Token) that Signifies 
(Denotes, or 
“Stands For”) an Entity 
License CC-BY-SA 4.0 (International).
Identifier Types? 
Quoted Literals such as: 
“Kingsley Idehen” or ‘Kingsley Idehen’ 
Absolute References: 
<http://kingsley.idehen.net/dataspace/person/kidehen#this> 
Relative References: 
<#KingsleyIdehen> 
License CC-BY-SA 4.0 (International).
How is an Entity Described? 
Through entity relationships that are 
represented in reusable form via document 
content (sentences and statements). 
License CC-BY-SA 4.0 (International).
What is a Relationship? 
A Relationship is an Association 
between two or more Entities, 
where each has a specific Role. 
License CC-BY-SA 4.0 (International).
What is a Relationship Role? 
A Relationship Role is a 
Function performed by an Entity 
in a Relationship 
License CC-BY-SA 4.0 (International).
Relationship Role Types? 
• Entity Attribute Value EAV 
 Entity -- observation focal point 
 Attribute -- observation attribute name 
(relationship type determinant) 
 Value -- observation attribute value 
• RDF (WC3’s Resource Description Framework) 
 Subject -- observation focal point 
 Predicate -- observation attribute name 
(relationship type determinant) 
 Object -- observation attribute value 
License CC-BY-SA 4.0 (International).
Relationship Role: Predicate 
The Relationship Predicate is the Connector that 
associates an observation focal point (Subject) with 
something, in the form of an observation value (Object). 
License CC-BY-SA 4.0 (International).
Relationship Role: Subject 
Actual Entity being Observed 
License CC-BY-SA 4.0 (International).
Relationship Role: Object 
Value associated 
with an observation focal point (Subject) 
via a Relationship Predicate. 
License CC-BY-SA 4.0 (International).
Types of Values? 
• Untyped Literals (Strings) 
• Typed Literals 
 Numbers 
 Dates 
 Booleans 
 Etc. 
• References (Local and Global Hyperlinks) 
License CC-BY-SA 4.0 (International).
How are Relationships Expressed? 
Relationships are Expressed using a Language, 
i.e., a system of signs [for denotation], syntax 
[arrangement of signs to form sentences], and entity 
relation semantics [meaning of relationship roles] for 
encoding and decoding information. 
Example: 
Subject, Predicate, Object – 
Used by W3C’s Resource Description Framework (RDF) 
and Natural Language. 
License CC-BY-SA 4.0 (International).
How Are Entity Relationships Represented ? 
Entity Relationships are Represented using notations 
associated with a specific language. Examples 
include: 
• Entity Relationship Model (Network /Graph) 
Diagrams. 
• Tables (CSV files, Spreadsheets, and SQL Relational 
Database Management Systems). 
• RDF-Turtle, JSON-LD, RDF/XML, HTML+Microdata, 
HTML+RDFa etc.. 
License CC-BY-SA 4.0 (International).
Entity Relationship Diagram 
<#hasCapital> 
License CC-BY-SA 4.0 (International). 
<#PopulatedPlace> 
“France” 
<#Paris> 
<#type> 
<#hasLabel> 
<#France>
Turtle Notation Based Entity Relationship Statements 
<#France> <#Type> <#PopulatedPlace> . 
<#France> <#hasLabel> ”France” . 
<#France> <#hasCapital> <#Paris> . 
<#Paris> <#Type> <#PopulatedPlace> . 
<#Paris> <#hasLabel> ”Paris” . 
<#PopulatedPlace> <#Type> <#Place> . 
License CC-BY-SA 4.0 (International).
Entity Relationship Tables 
Delimiter: e.g., Comma 
Identifier Quote Character: Double-quotes 
Relation Header Row: Entity,Attribute,Value 
Relation Body 
Example: 
“Entity”, “Attribute” “Value” 
“France”, “Type” “PopulatedPlace” 
“France” , “hasLabel” “France” 
“France” , “hasCapital” “Paris” 
License CC-BY-SA 4.0 (International).
Statement Representation: Spreadsheet Tables 
Entity (Subject) Attribute (Predicate) Value (Object) 
#France #Type #PopulatedPlace 
#France #hasLabel “France” 
#France #hasCapital #Paris 
#Paris #Type #PopulatedPlace 
#Paris #hasLabel “Paris” 
#PopulatedPlace #Type #Place 
License CC-BY-SA 4.0 (International).
How are Statements Persisted & Transmitted? 
• Persistence: 
 To paper based documents 
 To digital realm documents 
(e.g., operating system files, web pages, etc.) 
• Transmission: 
 Text oriented serialization formats 
 Binary serialization formats 
License CC-BY-SA 4.0 (International).
Understanding Data (Recap) 
• The term “Data” refers to observation 
expressed in reusable form. 
• The term “Observation” refers to our 
perception of Entity Relationships. 
• Entity Relationships are expressed 
using a language. 
• Statements are represented using 
a variety of notations; persisted to paper 
or digital documents; and transmissible 
using a variety of serialization formats. 
License CC-BY-SA 4.0 (International).
DATA ACCESS 
License CC-BY-SA 4.0 (International).
Fundamental Challenge 
Access to Data Independent of: 
• Location 
(File or Database Management System) 
• Representation Notation 
• Serialization Format 
• Transmission Protocol 
• Host Operating Systems 
• Consumer Applications 
License CC-BY-SA 4.0 (International).
Critical Components 
• Identifiers that denote (signify) each entity associated with the 
following relationship roles: 
 Entity (Subject) 
 Attribute (Predicate) 
 Value (Object) 
• Identifiers that denote entity description documents 
(Descriptors) 
• Identifiers that provide entity naming (identification) via 
implicit or explicit [denotation]  [description document 
content] resolution using indirection (i.e., combined effect of 
denotation & connotation to deliver identification or sense) 
• Name Resolution Protocols 
• Document Content Serialization Formats 
License CC-BY-SA 4.0 (International).
Entity Identifiers (Names) 
Uniform Resource Identifier (URI) 
<http://kingsley.idehen.net/dataspace/person/kidehen#this> 
– WebID (i.e., an HTTP URI that denotes an Entity of Type: Agent 
(Person, Organization, Software, Robot etc) 
ODBC Data Source Name (DSN) 
DSN=CRM 
JDBC Data Source Name (DSN) 
DSN=CRM 
License CC-BY-SA 4.0 (International).
Entity Description Document Locators 
• Uniform Resource (Data) Locator (URL) 
o <http://kingsley.idehen.net/dataspace/person/kidehen> – an HTTP URI that denotes a 
Document on an HTTP Network 
• ODBC Data Source Name 
o DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – 
denotes an ODBC accessible Table in a SQL RDBMS 
• JDBC Data Source URL 
o jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – 
denotes a JDBC accessible Table in a SQL RDBMS 
License CC-BY-SA 4.0 (International).
ODBC Data Source Name Challenges 
• SQL Relational Database Specific. 
• Identifiers are x.500 names that are only 
understood by operating system locked 
applications. 
• Identifiers denote RDBMS specific tables, views, 
users, and stored procedures. 
License CC-BY-SA 4.0 (International).
JDBC Data Source Name Challenges 
• SQL Relational Database Specific. 
• Identifiers are “jdbc:” scheme URIs that are only 
understood by JDBC compliant applications 
constrained by Java Virtual Machine (JVM). 
• Identifiers denote RDBMS specific tables, views, 
users, and stored procedures. 
License CC-BY-SA 4.0 (International).
HTTP URI based Data Source Name Virtues 
• Database Engine Independent. 
• Data Access Protocol Independent. 
• Data Representation Format Independent. 
• Identifiers are Literals and/or References 
(which globalize lookup scope). 
• Identifiers denote anything, i.e., an kind of entity. 
• Identifiers are “terms” that resolve to referent 
description documents, globally. 
License CC-BY-SA 4.0 (International).
Data Source Name Resolution Protocols 
• Internet based Computer Network – 
Domain Name Services (DNS) protocol 
provides Name Resolution for Computers. 
• World Wide Web Document Network – 
HTTP provides Name Resolution for Web 
Documents via HTTP URLs. 
• World Wide Web Data Network – 
HTTP provides Name Resolution for 
Entities via HTTP URIs . 
License CC-BY-SA 4.0 (International).
DNS based Linked Computer Network (Internet) 
Linked Computer Network (e.g., Internet) 
1. Computer (DNS CNAMES) Names are Data Source Name 
2. Actual Data Model and Data Access is Local and Machine OS hosted App. specific. 
License CC-BY-SA 4.0 (International). 
Internet
HTTP based Linked Document Network (Web 1.0 & 2.0) 
Linked Document Network (e.g., World Wide Web) 
1. Computer (DNS CNAMES) Names become irrelevant. 
2. Document Locators / Addresses (HTTP URLs) are Data Source Names (DSNs). 
3. One kind of Relation i.e., "LinksTo" is what connects the Documents. 
4. To machines: actual Data Model, Entity Relation Semantics, and Representation Notations are 
indecipherable from content. 
Internet 
Web 
License CC-BY-SA 4.0 (International).
HTTP based Linked Data Network (Web 3.0) 
Linked Data Network (e.g., Linked Open Data Cloud) 
1. Entity Names (HTTP URIs) are Data Source Names (DSNs) 
2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 
3. Actual Data Model and Representation Notations are loosely coupled. 
License CC-BY-SA 4.0 (International). 
Internet 
Web 
Linked Data
LINKED DATA 
(WEBBY STRUCTURED DATA) 
License CC-BY-SA 4.0 (International).
Linked Data Fundamentals 
• Denote (“refer to” or name) entities unambiguously using URIs 
– similar to the role of “words” in natural language. 
• Use HTTP URIs so that the description of any entity can be 
looked up using any HTTP user agent – similar to the role of 
“terms “ in natural language. 
• Use human and machine readable statements 
(via open standards e.g., RDF) to create document content that 
describes entities. 
• Refer to other entities using their HTTP URI based names in 
your entity description documents – i.e., – expand the Web! 
License CC-BY-SA 4.0 (International).
Understanding HTTP URI Entity Name and 
Description Doc Address Duality 
An HTTP URI is a kind of 
identifier that denotes 
(“Refers To”) 
an entity while also 
resolving to its 
description document, 
over an HTTP Network. 
License CC-BY-SA 4.0 (International).
What is Linked Data? 
Linked Data is the use of Resolvable URIs 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using Resolvable URIs. 
License CC-BY-SA 4.0 (International).
What is Linked Open Data? 
Linked Open Data is the use of HTTP URIs 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using HTTP URIs. 
Note: URIs and HTTP are Open Standards 
License CC-BY-SA 4.0 (International).
Why is Linked Open Data Important? 
• It turns HTTP URIs (Hyperlinks) into Data Source Names. 
• It moves us from Open Database Connectivity to Open 
Data Connectivity – that scales from Private Data 
Spaces to the World Wide Web. 
• It delivers a powerful mechanism for virtualization of 
disparate and heterogeneous data sources (big or 
small) i.e., Data De-Silo-Fication. 
• It is inherently Platform Agnostic. 
• It delivers a Linked Open Data Cloud that scales to the 
World Wide Web. 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Data? 
RDF-based Linked Data is the use of IRIs 
and Entity Relationship Type (aka. Relations) Semantics to 
enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using IRIs. 
Note: RDF and IRIs are Open Standards 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Open Data? 
RDF-based Linked Open Data is the use of 
HTTP URIs & Entity Relationship Type (Relations) 
Semantics 
to enhance Structured Data Representation. 
Basically: 
Representing Entity Relationships and 
Relation Semantics using Statements 
where the relationship role participants 
[Subject, Predicate, and Object (optionally)] 
are unambiguously “referred to” using HTTP URIs. 
Note: RDF, HTTP and URIs are Open Standards 
License CC-BY-SA 4.0 (International).
What is RDF based Linked Data? 
RDF-based Linked Data is 
Web-Like Structured Data 
enhanced with RDF’s 
*explicit* machine-and 
human-comprehensible 
Entity Relationship 
Semantics. 
Identifiers, Structured Data Representation, and Logic 
License CC-BY-SA 4.0 (International). 
Linked 
Data 
RDF 
Predicate Logic 
(Entity Relationship 
Semantics)
RDF based Linked Open Data (Semantic Web) 
Semantically Enhanced Linked Data Network 
(e.g., Semantic Web of Big Linked Open Data) 
License CC-BY-SA 4.0 (International). 
Internet 
Web 
Linked Data 
Relation 
1. Entity Names (HTTP URIs) are Semantics 
Data Source Names (DSNs) 
2. Computer (DNS CNAMES) 
& Document Names (HTTP 
URLs) become irrelevant 
3. Actual Data Model and 
Representation Notations 
are loosely coupled 
4. RDF & RDF Schema Relation 
Semantics 
are accessible and 
comprehendible to 
humans and machines.
Local Linked Data (Inaccessible) 
Entity (Subject) Attribute (Predicate) Value (Object) 
urn:data:object:id:France urn:data:object:id:Type urn:data:object:id:Popula 
tedPlace 
urn:data:object:id:France urn:data:object:id:hasLabel “France” 
urn:data:object:id:France urn:data:object:id:hasCapital urn:data:object:id:Paris 
urn:data:object:id:Paris urn:data:object:id:Type urn:data:object:id:Popula 
tedPlace 
urn:data:object:id:Paris urn:data:object:id:hasLabel “Paris” 
urn:data:object:id:Populate 
dPlace 
urn:data:object:id:Type urn:data:object:id:Place 
License CC-BY-SA 4.0 (International).
Linked Data (Accessible Webby Data) 
Entity (Subject) Attribute (Predicate) Value (Object) 
http://dbpedia.org/resource/France 
http://www.w3.org/1999/02/22-rdf-syntax- 
ns#type 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://dbpedia.org/resource/France 
http://www.w3.org/2000/01/rdf-schema# 
label 
“France” 
http://dbpedia.org/resource/France http://dbpedia.org/ontology/capital http://dbpedia.org/resource/Paris 
http://dbpedia.org/resource/Paris 
http://www.w3.org/1999/02/22-rdf-syntax- 
ns#type 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://dbpedia.org/resource/Paris 
http://www.w3.org/2000/01/rdf-schema# 
label 
“Paris” 
http://dbpedia.org/ontology/Popula 
tedPlace 
http://www.w3.org/2000/01/rdf-schema# 
subClassOf 
http://dbpedia.org/ontology/Place 
License CC-BY-SA 4.0 (International).
Massive Linked Open Data Cloud 
License CC-BY-SA 4.0 (International).
NATURAL LANGUAGE & DATA 
“Natural Languages are the most sophisticated systems of 
communication ever developed.” – John F. Sowa 
“Once you have a truly massive amount of information 
integrated as knowledge, then the human-software system 
will be superhuman, in the same sense that mankind with 
writing is superhuman compared to mankind before 
writing.” – Douglas Lenat 
License CC-BY-SA 4.0 (International).
Natural Language & Data 
• A Word or Phrase is an identifier that names an Entity (thing) via 
implicit [denotation][referent description document content] 
resolution 
• A Term is a Word or Phrase that names an Entity via explicit, 
[denotation][referent description document content] 
resolution, using indirection. 
• A Sentence is a syntax rules constrained arrangement of Words 
and Phrases that represent types of Entity Relationships. 
• A Statement is a kind of Sentence constructed from Terms. 
License CC-BY-SA 4.0 (International).
Data (Recap) 
• A IRI is an Internationalized Identifier that has the entity naming 
characteristics of a Word or Phrase. 
• An HTTP URI is a kind of IRI that has the entity naming 
characteristics of a Term i.e., denotation (signification) and 
connotation (description) reference duality. 
• RDF enables digital sentence construction where IRIs are used to 
name Entities participating in the Subject, Predicate, and Object 
relationship roles. 
• RDF based Linked Data enables digital statement construction 
where HTTP URIs are used to denote Entities participating in the 
Subject, Predicate, and Object relationship roles. 
License CC-BY-SA 4.0 (International).
Natural Language & Data Connection 
• An RDF triple represents a “Datum” – a Sentence compromised 
of Words or Phrases. 
• An RDF based Linked Open Data Triple represents a “Webby 
Datum” – a Statement comprised of Terms. 
• RDF triple collections represent Data – Sentences. 
• RDF based Linked Open Data triple collections represent “Webby 
Data” – Statements. 
License CC-BY-SA 4.0 (International).
Live Additional Information Links 
An Glossary of terms, in Linked Data form: 
• Data 
• Big Data 
• Open Data 
• Public Open Data 
• Linked Data 
• Linked Open Data 
• Semantic Web 
• Resource Description Framework (RDF) 
License CC-BY-SA 4.0 (International).
References 
• The Role of Logic and Ontology in Language and 
Reasoning --- John F. Sowa 
• Blogic – Pat Hayes 
• Unified View of Data – Peter Chen 
• Levels of Abstraction: Net, Web, Graph – Tim Berners- 
Lee 
• What is Data? What is a Datum – Ontolog Forum 
Thread 
• Data & Relations – Ontolog Forum Thread. 
License CC-BY-SA 4.0 (International).
Additional Information 
Web Sites 
OpenLink Software 
YouID – Digital Identity Card (Certificate) Generator 
OpenLink Data Spaces – Semantically enhanced Personal & Enterprise Data Spaces & 
Collaboration Platform 
OpenLink Virtuoso - Hybrid Data Management, Integration, Application, and Identity Server 
Universal Data Access Drivers - High-Performance ODBC, JDBC, ADO.NET, and OLE-DB 
Drivers 
Social Media Data spaces 
http://kidehen.blogspot.com (weblog) 
http://www.openlinksw.com/blog/~kidehen/ (weblog) 
https://plus.google.com/112399767740508618350/posts (Google+) 
https://twitter.com/#!/kidehen (Twitter) 
Hashtag: #LinkedData (Anywhere). 
License CC-BY-SA 4.0 (International).

Weitere ähnliche Inhalte

Was ist angesagt?

The Data Science Process
The Data Science ProcessThe Data Science Process
The Data Science ProcessVishal Patel
 
Introduction of Data Science
Introduction of Data ScienceIntroduction of Data Science
Introduction of Data ScienceJason Geng
 
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Edureka!
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data ScienceSrishti44
 
The Evolution of Data Science
The Evolution of Data ScienceThe Evolution of Data Science
The Evolution of Data ScienceKenny Daniel
 
Data Quality & Data Governance
Data Quality & Data GovernanceData Quality & Data Governance
Data Quality & Data GovernanceTuba Yaman Him
 
Data science presentation - Management career institute
Data science presentation - Management career instituteData science presentation - Management career institute
Data science presentation - Management career institutePoojaPatidar11
 
Introduction to data analytics
Introduction to data analyticsIntroduction to data analytics
Introduction to data analyticsSSaudia
 
Netflix Data Engineering @ Uber Engineering Meetup
Netflix Data Engineering @ Uber Engineering MeetupNetflix Data Engineering @ Uber Engineering Meetup
Netflix Data Engineering @ Uber Engineering MeetupBlake Irvine
 
Introduction to Big Data Analytics and Data Science
Introduction to Big Data Analytics and Data ScienceIntroduction to Big Data Analytics and Data Science
Introduction to Big Data Analytics and Data ScienceData Science Thailand
 
Tableau slideshare
Tableau slideshareTableau slideshare
Tableau slideshareSakshi Jain
 
Data visualization introduction
Data visualization introductionData visualization introduction
Data visualization introductionManokamnaKochar1
 
Introduction on Data Science
Introduction on Data ScienceIntroduction on Data Science
Introduction on Data ScienceEdureka!
 

Was ist angesagt? (20)

Data Engineering Basics
Data Engineering BasicsData Engineering Basics
Data Engineering Basics
 
The Data Science Process
The Data Science ProcessThe Data Science Process
The Data Science Process
 
Analytical tools
Analytical toolsAnalytical tools
Analytical tools
 
Introduction of Data Science
Introduction of Data ScienceIntroduction of Data Science
Introduction of Data Science
 
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
Data Science Tutorial | What is Data Science? | Data Science For Beginners | ...
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Data ethics
Data ethicsData ethics
Data ethics
 
The Evolution of Data Science
The Evolution of Data ScienceThe Evolution of Data Science
The Evolution of Data Science
 
Data visualization
Data visualizationData visualization
Data visualization
 
Data Quality & Data Governance
Data Quality & Data GovernanceData Quality & Data Governance
Data Quality & Data Governance
 
Introduction to Data Analytics
Introduction to Data AnalyticsIntroduction to Data Analytics
Introduction to Data Analytics
 
Data science presentation - Management career institute
Data science presentation - Management career instituteData science presentation - Management career institute
Data science presentation - Management career institute
 
Introduction to data analytics
Introduction to data analyticsIntroduction to data analytics
Introduction to data analytics
 
Netflix Data Engineering @ Uber Engineering Meetup
Netflix Data Engineering @ Uber Engineering MeetupNetflix Data Engineering @ Uber Engineering Meetup
Netflix Data Engineering @ Uber Engineering Meetup
 
Big Data Trends
Big Data TrendsBig Data Trends
Big Data Trends
 
Introduction to Big Data Analytics and Data Science
Introduction to Big Data Analytics and Data ScienceIntroduction to Big Data Analytics and Data Science
Introduction to Big Data Analytics and Data Science
 
Tableau slideshare
Tableau slideshareTableau slideshare
Tableau slideshare
 
Data visualization introduction
Data visualization introductionData visualization introduction
Data visualization introduction
 
Introduction on Data Science
Introduction on Data ScienceIntroduction on Data Science
Introduction on Data Science
 
Data Mining
Data MiningData Mining
Data Mining
 

Andere mochten auch

Data vs. information
Data vs. informationData vs. information
Data vs. informationBesar Limani
 
BII The Internet Of Everything 2015
BII The Internet Of Everything 2015 BII The Internet Of Everything 2015
BII The Internet Of Everything 2015 BI Intelligence
 
Pp1 data, information & knowledge
Pp1 data, information & knowledgePp1 data, information & knowledge
Pp1 data, information & knowledgemenisantixs
 
Nature of Inquiry and Research
Nature of Inquiry and ResearchNature of Inquiry and Research
Nature of Inquiry and ResearchDAPHNIE MONTEVERDE
 
CRISP-DM - Agile Approach To Data Mining Projects
CRISP-DM - Agile Approach To Data Mining ProjectsCRISP-DM - Agile Approach To Data Mining Projects
CRISP-DM - Agile Approach To Data Mining ProjectsMichał Łopuszyński
 
Financing Innovations For The Bottom Of The Pyramid
Financing Innovations For The Bottom Of The PyramidFinancing Innovations For The Bottom Of The Pyramid
Financing Innovations For The Bottom Of The PyramidAynampudi Subbarao
 
DMann-SQLDeveloper4Reporting
DMann-SQLDeveloper4ReportingDMann-SQLDeveloper4Reporting
DMann-SQLDeveloper4ReportingDavid Mann
 
Sql rally amsterdam Aanalysing data with Power BI and Hive
Sql rally amsterdam Aanalysing data with Power BI and HiveSql rally amsterdam Aanalysing data with Power BI and Hive
Sql rally amsterdam Aanalysing data with Power BI and HiveJen Stirrup
 
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA SuiteOracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA SuiteDouwe Pieter van den Bos
 
OpenLink Virtuoso - Management & Decision Makers Overview
OpenLink Virtuoso - Management & Decision Makers OverviewOpenLink Virtuoso - Management & Decision Makers Overview
OpenLink Virtuoso - Management & Decision Makers OverviewKingsley Uyi Idehen
 
Sql saturday denmark power bi for pdf
Sql saturday denmark power bi for pdfSql saturday denmark power bi for pdf
Sql saturday denmark power bi for pdfJen Stirrup
 
Oracle Apex Technical Introduction
Oracle Apex   Technical IntroductionOracle Apex   Technical Introduction
Oracle Apex Technical Introductioncrokitta
 
How to save 30% on your internal printing expenses
How to save 30% on your internal printing expensesHow to save 30% on your internal printing expenses
How to save 30% on your internal printing expensesChris Gallagher
 
Ways in stating research problem.report
Ways in stating research problem.reportWays in stating research problem.report
Ways in stating research problem.reportAlberto Jr. Refugio
 

Andere mochten auch (20)

Data vs. information
Data vs. informationData vs. information
Data vs. information
 
BII The Internet Of Everything 2015
BII The Internet Of Everything 2015 BII The Internet Of Everything 2015
BII The Internet Of Everything 2015
 
Data and information
Data and informationData and information
Data and information
 
Pp1 data, information & knowledge
Pp1 data, information & knowledgePp1 data, information & knowledge
Pp1 data, information & knowledge
 
Data presentation 2
Data presentation 2Data presentation 2
Data presentation 2
 
Nature of Inquiry and Research
Nature of Inquiry and ResearchNature of Inquiry and Research
Nature of Inquiry and Research
 
CRISP-DM - Agile Approach To Data Mining Projects
CRISP-DM - Agile Approach To Data Mining ProjectsCRISP-DM - Agile Approach To Data Mining Projects
CRISP-DM - Agile Approach To Data Mining Projects
 
Financing Innovations For The Bottom Of The Pyramid
Financing Innovations For The Bottom Of The PyramidFinancing Innovations For The Bottom Of The Pyramid
Financing Innovations For The Bottom Of The Pyramid
 
DMann-SQLDeveloper4Reporting
DMann-SQLDeveloper4ReportingDMann-SQLDeveloper4Reporting
DMann-SQLDeveloper4Reporting
 
Sql rally amsterdam Aanalysing data with Power BI and Hive
Sql rally amsterdam Aanalysing data with Power BI and HiveSql rally amsterdam Aanalysing data with Power BI and Hive
Sql rally amsterdam Aanalysing data with Power BI and Hive
 
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA SuiteOracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
Oracle OpenWorld 2011 - Oracle Application Express within the Oracle SOA Suite
 
OpenLink Virtuoso - Management & Decision Makers Overview
OpenLink Virtuoso - Management & Decision Makers OverviewOpenLink Virtuoso - Management & Decision Makers Overview
OpenLink Virtuoso - Management & Decision Makers Overview
 
Sql saturday denmark power bi for pdf
Sql saturday denmark power bi for pdfSql saturday denmark power bi for pdf
Sql saturday denmark power bi for pdf
 
Oracle Apex Technical Introduction
Oracle Apex   Technical IntroductionOracle Apex   Technical Introduction
Oracle Apex Technical Introduction
 
Oracle Apex Overview
Oracle Apex OverviewOracle Apex Overview
Oracle Apex Overview
 
How to save 30% on your internal printing expenses
How to save 30% on your internal printing expensesHow to save 30% on your internal printing expenses
How to save 30% on your internal printing expenses
 
Quality tools
Quality toolsQuality tools
Quality tools
 
Ways in stating research problem.report
Ways in stating research problem.reportWays in stating research problem.report
Ways in stating research problem.report
 
Crisp-DM
Crisp-DMCrisp-DM
Crisp-DM
 
Chapter 1 types of research
Chapter 1 types of researchChapter 1 types of research
Chapter 1 types of research
 

Ähnlich wie Understanding Data

Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls Kingsley Uyi Idehen
 
Technical overview of the JISC Information Environment
Technical overview of the JISC Information EnvironmentTechnical overview of the JISC Information Environment
Technical overview of the JISC Information EnvironmentAndy Powell
 
The JISC Information Environment and VLEs
The JISC Information Environment and VLEsThe JISC Information Environment and VLEs
The JISC Information Environment and VLEsAndy Powell
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glassEduserv Foundation
 
X.500 More Than a Global Directory
X.500 More Than a Global DirectoryX.500 More Than a Global Directory
X.500 More Than a Global Directorylurdhu agnes
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech LegislationMartin Necasky
 
Linked data MLA 2015
Linked data MLA 2015Linked data MLA 2015
Linked data MLA 2015Cason Snow
 
Linked Data MLA 2015
Linked Data MLA 2015Linked Data MLA 2015
Linked Data MLA 2015Cason Snow
 
5 steps to becoming a JISC IE content provider
5 steps to becoming a JISC IE content provider5 steps to becoming a JISC IE content provider
5 steps to becoming a JISC IE content providerAndy Powell
 
A Framework for Self-descriptive RESTful Services
A Framework for Self-descriptive RESTful ServicesA Framework for Self-descriptive RESTful Services
A Framework for Self-descriptive RESTful Servicesruyalarcon
 
Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Julie Allinson
 

Ähnlich wie Understanding Data (20)

Understanding data -latest
Understanding data  -latestUnderstanding data  -latest
Understanding data -latest
 
Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls Enterprise & Web based Federated Identity Management & Data Access Controls
Enterprise & Web based Federated Identity Management & Data Access Controls
 
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"
Chachra, "Improving Discovery Systems Through Post Processing of Harvested Data"
 
B08 A3pc 90 Diapo Damy En
B08 A3pc 90 Diapo Damy EnB08 A3pc 90 Diapo Damy En
B08 A3pc 90 Diapo Damy En
 
Technical overview of the JISC Information Environment
Technical overview of the JISC Information EnvironmentTechnical overview of the JISC Information Environment
Technical overview of the JISC Information Environment
 
Virtuoso Platform Overview
Virtuoso Platform OverviewVirtuoso Platform Overview
Virtuoso Platform Overview
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
The JISC Information Environment and VLEs
The JISC Information Environment and VLEsThe JISC Information Environment and VLEs
The JISC Information Environment and VLEs
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glass
 
Name Services
Name Services Name Services
Name Services
 
X.500 More Than a Global Directory
X.500 More Than a Global DirectoryX.500 More Than a Global Directory
X.500 More Than a Global Directory
 
Name services
Name servicesName services
Name services
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech Legislation
 
Linked data MLA 2015
Linked data MLA 2015Linked data MLA 2015
Linked data MLA 2015
 
Linked Data MLA 2015
Linked Data MLA 2015Linked Data MLA 2015
Linked Data MLA 2015
 
Interoperability in Digital Libraries
Interoperability in Digital LibrariesInteroperability in Digital Libraries
Interoperability in Digital Libraries
 
Gbrds Tech Issues Op
Gbrds Tech Issues OpGbrds Tech Issues Op
Gbrds Tech Issues Op
 
5 steps to becoming a JISC IE content provider
5 steps to becoming a JISC IE content provider5 steps to becoming a JISC IE content provider
5 steps to becoming a JISC IE content provider
 
A Framework for Self-descriptive RESTful Services
A Framework for Self-descriptive RESTful ServicesA Framework for Self-descriptive RESTful Services
A Framework for Self-descriptive RESTful Services
 
Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29
 

Mehr von Kingsley Uyi Idehen

LOD Cloud Knowledge Graph vs COVID-19
LOD Cloud Knowledge Graph vs COVID-19LOD Cloud Knowledge Graph vs COVID-19
LOD Cloud Knowledge Graph vs COVID-19Kingsley Uyi Idehen
 
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference KeynoteKingsley Uyi Idehen
 
HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data Kingsley Uyi Idehen
 
Sigma Knowledge Engineering Environment
Sigma Knowledge Engineering EnvironmentSigma Knowledge Engineering Environment
Sigma Knowledge Engineering EnvironmentKingsley Uyi Idehen
 
Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles Kingsley Uyi Idehen
 
Knowledge Design Patterns (by John F. Sowa)
Knowledge Design Patterns (by John F. Sowa)Knowledge Design Patterns (by John F. Sowa)
Knowledge Design Patterns (by John F. Sowa)Kingsley Uyi Idehen
 
Accessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCAccessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCKingsley Uyi Idehen
 
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)Kingsley Uyi Idehen
 
Virtuoso ODBC Driver Configuration & Usage (Windows)
Virtuoso ODBC Driver Configuration & Usage (Windows)Virtuoso ODBC Driver Configuration & Usage (Windows)
Virtuoso ODBC Driver Configuration & Usage (Windows)Kingsley Uyi Idehen
 
Exploiting Linked Data via Filemaker
Exploiting Linked Data via FilemakerExploiting Linked Data via Filemaker
Exploiting Linked Data via FilemakerKingsley Uyi Idehen
 
Tableau Desktop as a Linked (Open) Data Front-End via ODBC
Tableau Desktop as a Linked (Open) Data Front-End via ODBCTableau Desktop as a Linked (Open) Data Front-End via ODBC
Tableau Desktop as a Linked (Open) Data Front-End via ODBCKingsley Uyi Idehen
 
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBCUsing SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBCKingsley Uyi Idehen
 
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNs
Exploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNsExploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNs
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNsKingsley Uyi Idehen
 
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-endUsing Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-endKingsley Uyi Idehen
 
Exploiting Linked (Open) Data via Microsoft Access
Exploiting Linked (Open) Data via Microsoft AccessExploiting Linked (Open) Data via Microsoft Access
Exploiting Linked (Open) Data via Microsoft AccessKingsley Uyi Idehen
 
Understanding Linked Data via EAV Model based Structured Descriptions
Understanding Linked Data via EAV Model based Structured DescriptionsUnderstanding Linked Data via EAV Model based Structured Descriptions
Understanding Linked Data via EAV Model based Structured DescriptionsKingsley Uyi Idehen
 
Meet Charlie What Is Enterprise 3.0
Meet Charlie What Is Enterprise 3.0Meet Charlie What Is Enterprise 3.0
Meet Charlie What Is Enterprise 3.0Kingsley Uyi Idehen
 
Making the Conceptual Layer Real via HTTP based Linked Data
Making the Conceptual Layer Real via HTTP based Linked DataMaking the Conceptual Layer Real via HTTP based Linked Data
Making the Conceptual Layer Real via HTTP based Linked DataKingsley Uyi Idehen
 

Mehr von Kingsley Uyi Idehen (20)

LOD Cloud Knowledge Graph vs COVID-19
LOD Cloud Knowledge Graph vs COVID-19LOD Cloud Knowledge Graph vs COVID-19
LOD Cloud Knowledge Graph vs COVID-19
 
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 
HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data
 
Sigma Knowledge Engineering Environment
Sigma Knowledge Engineering EnvironmentSigma Knowledge Engineering Environment
Sigma Knowledge Engineering Environment
 
Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles Linked Open Data (LOD) Cloud & Ontology Life Cycles
Linked Open Data (LOD) Cloud & Ontology Life Cycles
 
ISWC 2012 - Linked Data Meetup
ISWC 2012 - Linked Data MeetupISWC 2012 - Linked Data Meetup
ISWC 2012 - Linked Data Meetup
 
Knowledge Design Patterns (by John F. Sowa)
Knowledge Design Patterns (by John F. Sowa)Knowledge Design Patterns (by John F. Sowa)
Knowledge Design Patterns (by John F. Sowa)
 
Accessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCAccessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBC
 
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
Virtuoso ODBC Driver Configuration & Usage (Mac OS X)
 
Virtuoso ODBC Driver Configuration & Usage (Windows)
Virtuoso ODBC Driver Configuration & Usage (Windows)Virtuoso ODBC Driver Configuration & Usage (Windows)
Virtuoso ODBC Driver Configuration & Usage (Windows)
 
Exploiting Linked Data via Filemaker
Exploiting Linked Data via FilemakerExploiting Linked Data via Filemaker
Exploiting Linked Data via Filemaker
 
Tableau Desktop as a Linked (Open) Data Front-End via ODBC
Tableau Desktop as a Linked (Open) Data Front-End via ODBCTableau Desktop as a Linked (Open) Data Front-End via ODBC
Tableau Desktop as a Linked (Open) Data Front-End via ODBC
 
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBCUsing SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
Using SAP Crystal Reports as a Linked (Open) Data Front-End via ODBC
 
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNs
Exploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNsExploiting Linked (Open) Data via Microsoft Access using ODBC  File DSNs
Exploiting Linked (Open) Data via Microsoft Access using ODBC File DSNs
 
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-endUsing Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
Using Tibco SpotFire (via Virtuoso ODBC) as Linked Data Front-end
 
Exploiting Linked (Open) Data via Microsoft Access
Exploiting Linked (Open) Data via Microsoft AccessExploiting Linked (Open) Data via Microsoft Access
Exploiting Linked (Open) Data via Microsoft Access
 
Integrating Semantic Systems
Integrating Semantic SystemsIntegrating Semantic Systems
Integrating Semantic Systems
 
Understanding Linked Data via EAV Model based Structured Descriptions
Understanding Linked Data via EAV Model based Structured DescriptionsUnderstanding Linked Data via EAV Model based Structured Descriptions
Understanding Linked Data via EAV Model based Structured Descriptions
 
Meet Charlie What Is Enterprise 3.0
Meet Charlie What Is Enterprise 3.0Meet Charlie What Is Enterprise 3.0
Meet Charlie What Is Enterprise 3.0
 
Making the Conceptual Layer Real via HTTP based Linked Data
Making the Conceptual Layer Real via HTTP based Linked DataMaking the Conceptual Layer Real via HTTP based Linked Data
Making the Conceptual Layer Real via HTTP based Linked Data
 

Kürzlich hochgeladen

TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 

Kürzlich hochgeladen (20)

TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 

Understanding Data

  • 1. UNDERSTANDING DATA By Kingsley Idehen Founder & CEO, OpenLink Software
  • 2. Presentation Goals Deconstruct Data Understand Data Representation Understand Data Access Understand Data Integration License CC-BY-SA 4.0 (International).
  • 3. SITUATION ANALYSIS License CC-BY-SA 4.0 (International).
  • 4. EVERY DAY WE HEAR License CC-BY-SA 4.0 (International). DATA IS BIG DATA IS OPEN DATA IS LINKED
  • 5. WE ALMOST NEVERHEAR ABOUT License CC-BY-SA 4.0 (International). WHAT DATA ACTUALLY IS HOW DATA IS REPRESENTED HOW DATA IS ACCESSED, SHARED, & INTEGRATED
  • 6. Why is Data Important? Data is the basis of Information, Knowledge, and Wisdom. WISDOM KNOWLEDGE INFORMATION DATA License CC-BY-SA 4.0 (International).
  • 7. What is Data? Data is how we express Observation in reusable form. License CC-BY-SA 4.0 (International).
  • 8. What is Observation? Observation is the Perception of Relationships between Entities. YOUR OBSERVATIONS PEOPLE, PLACES, MUSIC, DOCUMENTS, CALENDARS, DIARIES, ADDRESS BOOKS & MORE... License CC-BY-SA 4.0 (International).
  • 9. What is an Entity? An Entity is a Distinctly Identifiable Thing License CC-BY-SA 4.0 (International).
  • 10. How is an Entity Identified (Named) ? An Entity is Identified (or named) through the combined effects of Identifier based denotation (signification) and document content based connotation (description). License CC-BY-SA 4.0 (International).
  • 11. How is an Entity Denoted? An Entity is Denoted (Signified) through the use of an Identifier. License CC-BY-SA 4.0 (International).
  • 12. What is an Identifier? An Identifier is a Sign (or Token) that Signifies (Denotes, or “Stands For”) an Entity License CC-BY-SA 4.0 (International).
  • 13. Identifier Types? Quoted Literals such as: “Kingsley Idehen” or ‘Kingsley Idehen’ Absolute References: <http://kingsley.idehen.net/dataspace/person/kidehen#this> Relative References: <#KingsleyIdehen> License CC-BY-SA 4.0 (International).
  • 14. How is an Entity Described? Through entity relationships that are represented in reusable form via document content (sentences and statements). License CC-BY-SA 4.0 (International).
  • 15. What is a Relationship? A Relationship is an Association between two or more Entities, where each has a specific Role. License CC-BY-SA 4.0 (International).
  • 16. What is a Relationship Role? A Relationship Role is a Function performed by an Entity in a Relationship License CC-BY-SA 4.0 (International).
  • 17. Relationship Role Types? • Entity Attribute Value EAV  Entity -- observation focal point  Attribute -- observation attribute name (relationship type determinant)  Value -- observation attribute value • RDF (WC3’s Resource Description Framework)  Subject -- observation focal point  Predicate -- observation attribute name (relationship type determinant)  Object -- observation attribute value License CC-BY-SA 4.0 (International).
  • 18. Relationship Role: Predicate The Relationship Predicate is the Connector that associates an observation focal point (Subject) with something, in the form of an observation value (Object). License CC-BY-SA 4.0 (International).
  • 19. Relationship Role: Subject Actual Entity being Observed License CC-BY-SA 4.0 (International).
  • 20. Relationship Role: Object Value associated with an observation focal point (Subject) via a Relationship Predicate. License CC-BY-SA 4.0 (International).
  • 21. Types of Values? • Untyped Literals (Strings) • Typed Literals  Numbers  Dates  Booleans  Etc. • References (Local and Global Hyperlinks) License CC-BY-SA 4.0 (International).
  • 22. How are Relationships Expressed? Relationships are Expressed using a Language, i.e., a system of signs [for denotation], syntax [arrangement of signs to form sentences], and entity relation semantics [meaning of relationship roles] for encoding and decoding information. Example: Subject, Predicate, Object – Used by W3C’s Resource Description Framework (RDF) and Natural Language. License CC-BY-SA 4.0 (International).
  • 23. How Are Entity Relationships Represented ? Entity Relationships are Represented using notations associated with a specific language. Examples include: • Entity Relationship Model (Network /Graph) Diagrams. • Tables (CSV files, Spreadsheets, and SQL Relational Database Management Systems). • RDF-Turtle, JSON-LD, RDF/XML, HTML+Microdata, HTML+RDFa etc.. License CC-BY-SA 4.0 (International).
  • 24. Entity Relationship Diagram <#hasCapital> License CC-BY-SA 4.0 (International). <#PopulatedPlace> “France” <#Paris> <#type> <#hasLabel> <#France>
  • 25. Turtle Notation Based Entity Relationship Statements <#France> <#Type> <#PopulatedPlace> . <#France> <#hasLabel> ”France” . <#France> <#hasCapital> <#Paris> . <#Paris> <#Type> <#PopulatedPlace> . <#Paris> <#hasLabel> ”Paris” . <#PopulatedPlace> <#Type> <#Place> . License CC-BY-SA 4.0 (International).
  • 26. Entity Relationship Tables Delimiter: e.g., Comma Identifier Quote Character: Double-quotes Relation Header Row: Entity,Attribute,Value Relation Body Example: “Entity”, “Attribute” “Value” “France”, “Type” “PopulatedPlace” “France” , “hasLabel” “France” “France” , “hasCapital” “Paris” License CC-BY-SA 4.0 (International).
  • 27. Statement Representation: Spreadsheet Tables Entity (Subject) Attribute (Predicate) Value (Object) #France #Type #PopulatedPlace #France #hasLabel “France” #France #hasCapital #Paris #Paris #Type #PopulatedPlace #Paris #hasLabel “Paris” #PopulatedPlace #Type #Place License CC-BY-SA 4.0 (International).
  • 28. How are Statements Persisted & Transmitted? • Persistence:  To paper based documents  To digital realm documents (e.g., operating system files, web pages, etc.) • Transmission:  Text oriented serialization formats  Binary serialization formats License CC-BY-SA 4.0 (International).
  • 29. Understanding Data (Recap) • The term “Data” refers to observation expressed in reusable form. • The term “Observation” refers to our perception of Entity Relationships. • Entity Relationships are expressed using a language. • Statements are represented using a variety of notations; persisted to paper or digital documents; and transmissible using a variety of serialization formats. License CC-BY-SA 4.0 (International).
  • 30. DATA ACCESS License CC-BY-SA 4.0 (International).
  • 31. Fundamental Challenge Access to Data Independent of: • Location (File or Database Management System) • Representation Notation • Serialization Format • Transmission Protocol • Host Operating Systems • Consumer Applications License CC-BY-SA 4.0 (International).
  • 32. Critical Components • Identifiers that denote (signify) each entity associated with the following relationship roles:  Entity (Subject)  Attribute (Predicate)  Value (Object) • Identifiers that denote entity description documents (Descriptors) • Identifiers that provide entity naming (identification) via implicit or explicit [denotation]  [description document content] resolution using indirection (i.e., combined effect of denotation & connotation to deliver identification or sense) • Name Resolution Protocols • Document Content Serialization Formats License CC-BY-SA 4.0 (International).
  • 33. Entity Identifiers (Names) Uniform Resource Identifier (URI) <http://kingsley.idehen.net/dataspace/person/kidehen#this> – WebID (i.e., an HTTP URI that denotes an Entity of Type: Agent (Person, Organization, Software, Robot etc) ODBC Data Source Name (DSN) DSN=CRM JDBC Data Source Name (DSN) DSN=CRM License CC-BY-SA 4.0 (International).
  • 34. Entity Description Document Locators • Uniform Resource (Data) Locator (URL) o <http://kingsley.idehen.net/dataspace/person/kidehen> – an HTTP URI that denotes a Document on an HTTP Network • ODBC Data Source Name o DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – denotes an ODBC accessible Table in a SQL RDBMS • JDBC Data Source URL o jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – denotes a JDBC accessible Table in a SQL RDBMS License CC-BY-SA 4.0 (International).
  • 35. ODBC Data Source Name Challenges • SQL Relational Database Specific. • Identifiers are x.500 names that are only understood by operating system locked applications. • Identifiers denote RDBMS specific tables, views, users, and stored procedures. License CC-BY-SA 4.0 (International).
  • 36. JDBC Data Source Name Challenges • SQL Relational Database Specific. • Identifiers are “jdbc:” scheme URIs that are only understood by JDBC compliant applications constrained by Java Virtual Machine (JVM). • Identifiers denote RDBMS specific tables, views, users, and stored procedures. License CC-BY-SA 4.0 (International).
  • 37. HTTP URI based Data Source Name Virtues • Database Engine Independent. • Data Access Protocol Independent. • Data Representation Format Independent. • Identifiers are Literals and/or References (which globalize lookup scope). • Identifiers denote anything, i.e., an kind of entity. • Identifiers are “terms” that resolve to referent description documents, globally. License CC-BY-SA 4.0 (International).
  • 38. Data Source Name Resolution Protocols • Internet based Computer Network – Domain Name Services (DNS) protocol provides Name Resolution for Computers. • World Wide Web Document Network – HTTP provides Name Resolution for Web Documents via HTTP URLs. • World Wide Web Data Network – HTTP provides Name Resolution for Entities via HTTP URIs . License CC-BY-SA 4.0 (International).
  • 39. DNS based Linked Computer Network (Internet) Linked Computer Network (e.g., Internet) 1. Computer (DNS CNAMES) Names are Data Source Name 2. Actual Data Model and Data Access is Local and Machine OS hosted App. specific. License CC-BY-SA 4.0 (International). Internet
  • 40. HTTP based Linked Document Network (Web 1.0 & 2.0) Linked Document Network (e.g., World Wide Web) 1. Computer (DNS CNAMES) Names become irrelevant. 2. Document Locators / Addresses (HTTP URLs) are Data Source Names (DSNs). 3. One kind of Relation i.e., "LinksTo" is what connects the Documents. 4. To machines: actual Data Model, Entity Relation Semantics, and Representation Notations are indecipherable from content. Internet Web License CC-BY-SA 4.0 (International).
  • 41. HTTP based Linked Data Network (Web 3.0) Linked Data Network (e.g., Linked Open Data Cloud) 1. Entity Names (HTTP URIs) are Data Source Names (DSNs) 2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 3. Actual Data Model and Representation Notations are loosely coupled. License CC-BY-SA 4.0 (International). Internet Web Linked Data
  • 42. LINKED DATA (WEBBY STRUCTURED DATA) License CC-BY-SA 4.0 (International).
  • 43. Linked Data Fundamentals • Denote (“refer to” or name) entities unambiguously using URIs – similar to the role of “words” in natural language. • Use HTTP URIs so that the description of any entity can be looked up using any HTTP user agent – similar to the role of “terms “ in natural language. • Use human and machine readable statements (via open standards e.g., RDF) to create document content that describes entities. • Refer to other entities using their HTTP URI based names in your entity description documents – i.e., – expand the Web! License CC-BY-SA 4.0 (International).
  • 44. Understanding HTTP URI Entity Name and Description Doc Address Duality An HTTP URI is a kind of identifier that denotes (“Refers To”) an entity while also resolving to its description document, over an HTTP Network. License CC-BY-SA 4.0 (International).
  • 45. What is Linked Data? Linked Data is the use of Resolvable URIs to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using Resolvable URIs. License CC-BY-SA 4.0 (International).
  • 46. What is Linked Open Data? Linked Open Data is the use of HTTP URIs to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using HTTP URIs. Note: URIs and HTTP are Open Standards License CC-BY-SA 4.0 (International).
  • 47. Why is Linked Open Data Important? • It turns HTTP URIs (Hyperlinks) into Data Source Names. • It moves us from Open Database Connectivity to Open Data Connectivity – that scales from Private Data Spaces to the World Wide Web. • It delivers a powerful mechanism for virtualization of disparate and heterogeneous data sources (big or small) i.e., Data De-Silo-Fication. • It is inherently Platform Agnostic. • It delivers a Linked Open Data Cloud that scales to the World Wide Web. License CC-BY-SA 4.0 (International).
  • 48. What is RDF based Linked Data? RDF-based Linked Data is the use of IRIs and Entity Relationship Type (aka. Relations) Semantics to enhance Structured Data Representation. Basically: Representing Entity Relationships using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using IRIs. Note: RDF and IRIs are Open Standards License CC-BY-SA 4.0 (International).
  • 49. What is RDF based Linked Open Data? RDF-based Linked Open Data is the use of HTTP URIs & Entity Relationship Type (Relations) Semantics to enhance Structured Data Representation. Basically: Representing Entity Relationships and Relation Semantics using Statements where the relationship role participants [Subject, Predicate, and Object (optionally)] are unambiguously “referred to” using HTTP URIs. Note: RDF, HTTP and URIs are Open Standards License CC-BY-SA 4.0 (International).
  • 50. What is RDF based Linked Data? RDF-based Linked Data is Web-Like Structured Data enhanced with RDF’s *explicit* machine-and human-comprehensible Entity Relationship Semantics. Identifiers, Structured Data Representation, and Logic License CC-BY-SA 4.0 (International). Linked Data RDF Predicate Logic (Entity Relationship Semantics)
  • 51. RDF based Linked Open Data (Semantic Web) Semantically Enhanced Linked Data Network (e.g., Semantic Web of Big Linked Open Data) License CC-BY-SA 4.0 (International). Internet Web Linked Data Relation 1. Entity Names (HTTP URIs) are Semantics Data Source Names (DSNs) 2. Computer (DNS CNAMES) & Document Names (HTTP URLs) become irrelevant 3. Actual Data Model and Representation Notations are loosely coupled 4. RDF & RDF Schema Relation Semantics are accessible and comprehendible to humans and machines.
  • 52. Local Linked Data (Inaccessible) Entity (Subject) Attribute (Predicate) Value (Object) urn:data:object:id:France urn:data:object:id:Type urn:data:object:id:Popula tedPlace urn:data:object:id:France urn:data:object:id:hasLabel “France” urn:data:object:id:France urn:data:object:id:hasCapital urn:data:object:id:Paris urn:data:object:id:Paris urn:data:object:id:Type urn:data:object:id:Popula tedPlace urn:data:object:id:Paris urn:data:object:id:hasLabel “Paris” urn:data:object:id:Populate dPlace urn:data:object:id:Type urn:data:object:id:Place License CC-BY-SA 4.0 (International).
  • 53. Linked Data (Accessible Webby Data) Entity (Subject) Attribute (Predicate) Value (Object) http://dbpedia.org/resource/France http://www.w3.org/1999/02/22-rdf-syntax- ns#type http://dbpedia.org/ontology/Popula tedPlace http://dbpedia.org/resource/France http://www.w3.org/2000/01/rdf-schema# label “France” http://dbpedia.org/resource/France http://dbpedia.org/ontology/capital http://dbpedia.org/resource/Paris http://dbpedia.org/resource/Paris http://www.w3.org/1999/02/22-rdf-syntax- ns#type http://dbpedia.org/ontology/Popula tedPlace http://dbpedia.org/resource/Paris http://www.w3.org/2000/01/rdf-schema# label “Paris” http://dbpedia.org/ontology/Popula tedPlace http://www.w3.org/2000/01/rdf-schema# subClassOf http://dbpedia.org/ontology/Place License CC-BY-SA 4.0 (International).
  • 54. Massive Linked Open Data Cloud License CC-BY-SA 4.0 (International).
  • 55. NATURAL LANGUAGE & DATA “Natural Languages are the most sophisticated systems of communication ever developed.” – John F. Sowa “Once you have a truly massive amount of information integrated as knowledge, then the human-software system will be superhuman, in the same sense that mankind with writing is superhuman compared to mankind before writing.” – Douglas Lenat License CC-BY-SA 4.0 (International).
  • 56. Natural Language & Data • A Word or Phrase is an identifier that names an Entity (thing) via implicit [denotation][referent description document content] resolution • A Term is a Word or Phrase that names an Entity via explicit, [denotation][referent description document content] resolution, using indirection. • A Sentence is a syntax rules constrained arrangement of Words and Phrases that represent types of Entity Relationships. • A Statement is a kind of Sentence constructed from Terms. License CC-BY-SA 4.0 (International).
  • 57. Data (Recap) • A IRI is an Internationalized Identifier that has the entity naming characteristics of a Word or Phrase. • An HTTP URI is a kind of IRI that has the entity naming characteristics of a Term i.e., denotation (signification) and connotation (description) reference duality. • RDF enables digital sentence construction where IRIs are used to name Entities participating in the Subject, Predicate, and Object relationship roles. • RDF based Linked Data enables digital statement construction where HTTP URIs are used to denote Entities participating in the Subject, Predicate, and Object relationship roles. License CC-BY-SA 4.0 (International).
  • 58. Natural Language & Data Connection • An RDF triple represents a “Datum” – a Sentence compromised of Words or Phrases. • An RDF based Linked Open Data Triple represents a “Webby Datum” – a Statement comprised of Terms. • RDF triple collections represent Data – Sentences. • RDF based Linked Open Data triple collections represent “Webby Data” – Statements. License CC-BY-SA 4.0 (International).
  • 59. Live Additional Information Links An Glossary of terms, in Linked Data form: • Data • Big Data • Open Data • Public Open Data • Linked Data • Linked Open Data • Semantic Web • Resource Description Framework (RDF) License CC-BY-SA 4.0 (International).
  • 60. References • The Role of Logic and Ontology in Language and Reasoning --- John F. Sowa • Blogic – Pat Hayes • Unified View of Data – Peter Chen • Levels of Abstraction: Net, Web, Graph – Tim Berners- Lee • What is Data? What is a Datum – Ontolog Forum Thread • Data & Relations – Ontolog Forum Thread. License CC-BY-SA 4.0 (International).
  • 61. Additional Information Web Sites OpenLink Software YouID – Digital Identity Card (Certificate) Generator OpenLink Data Spaces – Semantically enhanced Personal & Enterprise Data Spaces & Collaboration Platform OpenLink Virtuoso - Hybrid Data Management, Integration, Application, and Identity Server Universal Data Access Drivers - High-Performance ODBC, JDBC, ADO.NET, and OLE-DB Drivers Social Media Data spaces http://kidehen.blogspot.com (weblog) http://www.openlinksw.com/blog/~kidehen/ (weblog) https://plus.google.com/112399767740508618350/posts (Google+) https://twitter.com/#!/kidehen (Twitter) Hashtag: #LinkedData (Anywhere). License CC-BY-SA 4.0 (International).

Hinweis der Redaktion

  1. Title previously read “Data Access Challenge”
  2. Previously read: A WebID that denotes a Person Entity Typo in word organization
  3. Previously read: Uniform Resource (Data) Locator (URL) http://kingsley.idehen.net/dataspace/person/kidehen – denotes an HTTP accessible Document comprised of structured data ODBC Data Source Name DSN=CRM;HOST=crm.example.org;SVT=Oracle;DATABASE=CRM;TABLE=CUSTOMER – denotes an ODBC accessible Table JDBC Data Source URL jdbc:openlink://crm.example.org/SVT=Oracle/DATABASE=CRM/TABLE=CUSTOMER – denotes a JDBC accessible Table
  4. Previously read: Linked data principles “Refer To” (Name or Denote) Entities unambiguously using URIs. Use resolvable URIs (e.g., HTTP URIs) so that Entity Names resolve to Entity Description Documents (Descriptors). Use Structured Data to enhance the content of Entity Description Documents. Expand the Web by referring to other entities using their HTTP URIs.
  5. Previously read: Understanding HTTP URI Duality Duality endowed Identifiers that denote (“Refer To”) an entity while also resolving to its description, over an HTTP Network.
  6. Please check over colour keyed words Deleted: Words play Subject, Predicate, or Object roles in Sentences.