SlideShare una empresa de Scribd logo
1 de 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).

Más contenido relacionado

La actualidad más candente

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!
 
An introduction to Machine Learning
An introduction to Machine LearningAn introduction to Machine Learning
An introduction to Machine Learningbutest
 
Data Science Project Lifecycle
Data Science Project LifecycleData Science Project Lifecycle
Data Science Project LifecycleJason Geng
 
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...Data Science Training | Data Science Tutorial for Beginners | Data Science wi...
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...Edureka!
 
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...Simplilearn
 
Exploratory data analysis with Python
Exploratory data analysis with PythonExploratory data analysis with Python
Exploratory data analysis with PythonDavis David
 
Data Science Training | Data Science For Beginners | Data Science With Python...
Data Science Training | Data Science For Beginners | Data Science With Python...Data Science Training | Data Science For Beginners | Data Science With Python...
Data Science Training | Data Science For Beginners | Data Science With Python...Simplilearn
 
Machine Learning Course | Edureka
Machine Learning Course | EdurekaMachine Learning Course | Edureka
Machine Learning Course | EdurekaEdureka!
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree LearningMilind Gokhale
 
Data science applications and usecases
Data science applications and usecasesData science applications and usecases
Data science applications and usecasesSreenatha Reddy K R
 
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Edureka!
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine LearningRahul Jain
 
The Advantages and Disadvantages of Big Data
The Advantages and Disadvantages of Big DataThe Advantages and Disadvantages of Big Data
The Advantages and Disadvantages of Big DataNicha Tatsaneeyapan
 
Data Science With Python
Data Science With PythonData Science With Python
Data Science With PythonMosky Liu
 
Machine learning ppt
Machine learning pptMachine learning ppt
Machine learning pptRajat Sharma
 
Big Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityBig Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityData Science Thailand
 
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | EdurekaMachine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | EdurekaEdureka!
 

La actualidad más candente (20)

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 | ...
 
An introduction to Machine Learning
An introduction to Machine LearningAn introduction to Machine Learning
An introduction to Machine Learning
 
Data Science Project Lifecycle
Data Science Project LifecycleData Science Project Lifecycle
Data Science Project Lifecycle
 
Decision tree
Decision treeDecision tree
Decision tree
 
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...Data Science Training | Data Science Tutorial for Beginners | Data Science wi...
Data Science Training | Data Science Tutorial for Beginners | Data Science wi...
 
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...
Scikit-Learn Tutorial | Machine Learning With Scikit-Learn | Sklearn | Python...
 
Exploratory data analysis with Python
Exploratory data analysis with PythonExploratory data analysis with Python
Exploratory data analysis with Python
 
Data Science Training | Data Science For Beginners | Data Science With Python...
Data Science Training | Data Science For Beginners | Data Science With Python...Data Science Training | Data Science For Beginners | Data Science With Python...
Data Science Training | Data Science For Beginners | Data Science With Python...
 
Machine Learning Course | Edureka
Machine Learning Course | EdurekaMachine Learning Course | Edureka
Machine Learning Course | Edureka
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
 
Data science applications and usecases
Data science applications and usecasesData science applications and usecases
Data science applications and usecases
 
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
Decision Tree Algorithm | Decision Tree in Python | Machine Learning Algorith...
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Data visualization
Data visualizationData visualization
Data visualization
 
The Advantages and Disadvantages of Big Data
The Advantages and Disadvantages of Big DataThe Advantages and Disadvantages of Big Data
The Advantages and Disadvantages of Big Data
 
Data Science With Python
Data Science With PythonData Science With Python
Data Science With Python
 
Machine learning ppt
Machine learning pptMachine learning ppt
Machine learning ppt
 
Hierarchical Clustering
Hierarchical ClusteringHierarchical Clustering
Hierarchical Clustering
 
Big Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityBig Data Analytics to Enhance Security
Big Data Analytics to Enhance Security
 
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | EdurekaMachine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
 

Destacado

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
 

Destacado (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 a 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 a 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
 

Más de 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
 

Más de 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
 

Último

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 

Último (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 

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

Notas del editor

  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.