SlideShare a Scribd company logo
1 of 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).

More Related Content

What's hot

Introduction to basic data analytics tools
Introduction to basic data analytics toolsIntroduction to basic data analytics tools
Introduction to basic data analytics toolsNascenia IT
 
What Is Data Science? | Introduction to Data Science | Data Science For Begin...
What Is Data Science? | Introduction to Data Science | Data Science For Begin...What Is Data Science? | Introduction to Data Science | Data Science For Begin...
What Is Data Science? | Introduction to Data Science | Data Science For Begin...Simplilearn
 
Data mining: Classification and prediction
Data mining: Classification and predictionData mining: Classification and prediction
Data mining: Classification and predictionDataminingTools Inc
 
Introduction to Metadata
Introduction to MetadataIntroduction to Metadata
Introduction to MetadataEUDAT
 
Introduction on Data Science
Introduction on Data ScienceIntroduction on Data Science
Introduction on Data ScienceEdureka!
 
Information Retrieval Models
Information Retrieval ModelsInformation Retrieval Models
Information Retrieval ModelsNisha Arankandath
 
Internet of Things (IoT) and Big Data
Internet of Things (IoT) and Big DataInternet of Things (IoT) and Big Data
Internet of Things (IoT) and Big DataGuido Schmutz
 
Lecture1 introduction to big data
Lecture1 introduction to big dataLecture1 introduction to big data
Lecture1 introduction to big datahktripathy
 
Data science applications and usecases
Data science applications and usecasesData science applications and usecases
Data science applications and usecasesSreenatha Reddy K R
 
Data Visualization Techniques
Data Visualization TechniquesData Visualization Techniques
Data Visualization TechniquesAllAnalytics
 
Introduction to data science
Introduction to data scienceIntroduction to data science
Introduction to data scienceMahir Haque
 
the history of data visualization
the history of data visualizationthe history of data visualization
the history of data visualizationNIFTIT
 
Data Science With Python | Python For Data Science | Python Data Science Cour...
Data Science With Python | Python For Data Science | Python Data Science Cour...Data Science With Python | Python For Data Science | Python Data Science Cour...
Data Science With Python | Python For Data Science | Python Data Science Cour...Simplilearn
 
Introduction of Data Science
Introduction of Data ScienceIntroduction of Data Science
Introduction of Data ScienceJason Geng
 
chapter 6 data visualization ppt.pptx
chapter 6 data visualization ppt.pptxchapter 6 data visualization ppt.pptx
chapter 6 data visualization ppt.pptxsayalisonavane3
 
Boolean,vector space retrieval Models
Boolean,vector space retrieval Models Boolean,vector space retrieval Models
Boolean,vector space retrieval Models Primya Tamil
 
Introduction to data science.pptx
Introduction to data science.pptxIntroduction to data science.pptx
Introduction to data science.pptxSadhanaParameswaran
 

What's hot (20)

Introduction to basic data analytics tools
Introduction to basic data analytics toolsIntroduction to basic data analytics tools
Introduction to basic data analytics tools
 
What Is Data Science? | Introduction to Data Science | Data Science For Begin...
What Is Data Science? | Introduction to Data Science | Data Science For Begin...What Is Data Science? | Introduction to Data Science | Data Science For Begin...
What Is Data Science? | Introduction to Data Science | Data Science For Begin...
 
Data mining: Classification and prediction
Data mining: Classification and predictionData mining: Classification and prediction
Data mining: Classification and prediction
 
Introduction to Metadata
Introduction to MetadataIntroduction to Metadata
Introduction to Metadata
 
Introduction on Data Science
Introduction on Data ScienceIntroduction on Data Science
Introduction on Data Science
 
Information Retrieval Models
Information Retrieval ModelsInformation Retrieval Models
Information Retrieval Models
 
Internet of Things (IoT) and Big Data
Internet of Things (IoT) and Big DataInternet of Things (IoT) and Big Data
Internet of Things (IoT) and Big Data
 
Lecture1 introduction to big data
Lecture1 introduction to big dataLecture1 introduction to big data
Lecture1 introduction to big data
 
Data science applications and usecases
Data science applications and usecasesData science applications and usecases
Data science applications and usecases
 
Data Visualization Techniques
Data Visualization TechniquesData Visualization Techniques
Data Visualization Techniques
 
Data Management
Data ManagementData Management
Data Management
 
Big data ppt
Big data pptBig data ppt
Big data ppt
 
Introduction to data science
Introduction to data scienceIntroduction to data science
Introduction to data science
 
the history of data visualization
the history of data visualizationthe history of data visualization
the history of data visualization
 
Kdd process
Kdd processKdd process
Kdd process
 
Data Science With Python | Python For Data Science | Python Data Science Cour...
Data Science With Python | Python For Data Science | Python Data Science Cour...Data Science With Python | Python For Data Science | Python Data Science Cour...
Data Science With Python | Python For Data Science | Python Data Science Cour...
 
Introduction of Data Science
Introduction of Data ScienceIntroduction of Data Science
Introduction of Data Science
 
chapter 6 data visualization ppt.pptx
chapter 6 data visualization ppt.pptxchapter 6 data visualization ppt.pptx
chapter 6 data visualization ppt.pptx
 
Boolean,vector space retrieval Models
Boolean,vector space retrieval Models Boolean,vector space retrieval Models
Boolean,vector space retrieval Models
 
Introduction to data science.pptx
Introduction to data science.pptxIntroduction to data science.pptx
Introduction to data science.pptx
 

Viewers also liked

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
 

Viewers also liked (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
 

Similar to 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
 

Similar to 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
 

More from 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
 

More from 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
 

Recently uploaded

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
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
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
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
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
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
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 

Recently uploaded (20)

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
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
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.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
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
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
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 

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).

Editor's Notes

  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.