SlideShare a Scribd company logo
1 of 31
Download to read offline
Intro to WikiData & SPARQL
VALA Tech Camp W4a
Jane Frazier
Ontology Operations Lead
SEEK
@mignon1915
Peter Neish
Research Data Curator
University of Melbourne
@peterneish
Agenda
What is RDF?
What is Linked Open Data?
What is SPARQL?
Examples and hands-on
This presentation >>> http://bit.ly/vala_sparql
What is RDF?
RDF
resource description framework
SKOS
simple knowledge
organization system
OWL
web ontology
language
SPARQL
SPARQL protocol
and RDF query
language
Triple
store
database for RDF
data
standards
http://iam.beyonce.com/post/99742478639
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
is interested in
subject
predicate
object
Triples
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyonce
http://dbpedia.org/resource/Beyoncé
Uniform Resource Identifiers (URIs)
Resources can be…
● People
● Places
● Things
● Documents
● Data
● Publications
● Relationships
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyonce
http://dbpedia.org/resource/Beyoncé
URI
(shortened)URI
URI
Uniform Resource Identifiers (URIs)
Beyonce
http://dbpedia.org/resource/Beyoncé
http://dbpedia.org/resource/Jay_Z
Jay Z
1981-09-04
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyonce
http://dbpedia.org/resource/Beyoncé
http://dbpedia.org/resource/Jay_Z
Jay Z
1981-09-04
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Triple
store
database for RDF data
Different from a
relational
database!
What is Linked Open Data?
semantically linked structured data on the open web
BUT HOW?
https://media.npr.org/assets/img/2015/10/24/gettyimages-493665354-e46c4f072368e3ce66c74da604812c80b20b168a.jpg
5-Star Open Data
http://5stardata.info
Make your stuff available on the
Web (whatever format) under an
open license
5-Star Open Data
http://5stardata.info
Make it available as structured
data (e.g., Excel instead of
image scan of a table)
5-Star Open Data
http://5stardata.info
Make it available in a
non-proprietary open format
(e.g., CSV instead of Excel)
5-Star Open Data
http://5stardata.info
Use URIs to denote things, so
that people can point at your
stuff
5-Star Open Data
http://5stardata.info
Link your data to other data to
provide context
Why is this stuff important?
● W3C approved standards for representing knowledge graphs
○ Lots of tools are built upon the same formats
● Each object is identified by a globally-unique machine-readable ID instead of a human-readable word or
phrase
○ Human-readable word or phrase can change when necessary without disrupting use
○ Can capture data in any language
● Any object can relate to any other object & relationship types are standard (i.e. SKOS) OR customisable
(i.e. OWL)
● Data (& the relationships between them) can be reused by people (human consumption) & products
(machine consumption) all over the web
● Can easily leverage other open data based on the same standards
○ schema.org
○ Geonames
○ Getty vocabularies (AAT, etc.)
○ Wikidata
● Lay the framework for international (multilingual & multicultural) interoperability
What is SPARQL?
● SPARQL Protocol and RDF Query Language
● Allows us to translate interlinked graph data into normalised tabular data that you
can do something with (eg graph or visualise)
● Is *kind of* like SQL
● Is used through a SPARQL endpoint
Example
SELECT ?painting
WHERE {
?painting <has medium> <oil on canvas>
}
subject predicate object
Wikidata
Wikidata is a free, collaborative, multilingual, secondary database, collecting structured
data to provide support for Wikipedia, Wikimedia Commons, the other wikis of the
Wikimedia movement, and to anyone in the world.
https://www.wikidata.org
SPARQL endpoint: https://query.wikidata.org/
Items and Properties
https://www.slideshare.net/_Emw/an-ambitious-wikidata-tutorial
Example: Melbourne (Q3141)
Build things on wikidata
http://histropedia.com/timeline/vz1ndyv56m/Apple-Computers
Hands on
Start with this cats example
1. Go to query.wikidata.org
2. Choose examples
3. Click on cats
SELECT ?item ?itemLabel WHERE {
?item wdt:P31 wd:Q146.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Play along at home at http://bit.ly/vala_sparql
Wikidata Query page
Modifying Wikidata query
1. Search for instance of library instead of cat
a. Change cat to library
b. Click run
2. Search for libraries in Australia
a. Click on +Filter and search for Australia
b. Click on instance of and change to country
c. Click run - seems a bit low - why don’t we get lots of libraries? (hint)
Improving our query
Our Query would work better if we found all libraries
SELECT ?item ?itemLabel WHERE {
?item wdt:P31/wdt:P279* wd:Q7075.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P17 wd:Q408.
}
http://tinyurl.com/y7ysrngp
Adding columns
Start with http://tinyurl.com/y7ysrngp from the last step
1. Click on +Show
2. Search for inception
3. Click on +Show
4. Search for image
Should now look like http://tinyurl.com/y8r3rp8t
Note the default behaviour is a table, check out the image grid and timeline
Accessing data
● Through the query page using query helper or sparql
● Through the download on the query page
● Using Linked Data content negotiation: http://www.wikidata.org/entity/Q42
● Using data url: http://www.wikidata.org/wiki/Special:EntityData/Q42.json
● Database dumps in rdf, json and xml
● SPARQL endpoint GET and POST requests. Eg cats as json
Further Resources
● This presentation: http://bit.ly/vala_sparql
● 5-Star Open Data: http://5stardata.info/en/
● Wikidata query manual:
https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual
● Wikidata properties: https://www.wikidata.org/wiki/Wikidata:List_of_properties
● Reasonator: https://tools.wmflabs.org/reasonator/
● Histropedia: http://histropedia.com
● Programming Historian - Linked Open Data lesson:
http://programminghistorian.org/lessons/graph-databases-and-SPARQL
● Comparison of SQL and SPARQL:
http://www.cambridgesemantics.com/semantic-university/sparql-vs-sql-intro

More Related Content

What's hot

Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashups
giurca
 

What's hot (20)

Semantic Web introduction
Semantic Web introductionSemantic Web introduction
Semantic Web introduction
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashups
 
Trying SPARQL Anything with MEI
Trying SPARQL Anything with MEITrying SPARQL Anything with MEI
Trying SPARQL Anything with MEI
 
Knowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectKnowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything Project
 
The SPARQL Anything project
The SPARQL Anything projectThe SPARQL Anything project
The SPARQL Anything project
 
Web Data Management with RDF
Web Data Management with RDFWeb Data Management with RDF
Web Data Management with RDF
 
A Little SPARQL in your Analytics
A Little SPARQL in your AnalyticsA Little SPARQL in your Analytics
A Little SPARQL in your Analytics
 
Flagis linked open_data_stijn_goedertier
Flagis linked open_data_stijn_goedertierFlagis linked open_data_stijn_goedertier
Flagis linked open_data_stijn_goedertier
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative Facts
 
Getting triples from records: the role of ISBD
Getting triples from records: the role of ISBDGetting triples from records: the role of ISBD
Getting triples from records: the role of ISBD
 
Jesús Barrasa
Jesús BarrasaJesús Barrasa
Jesús Barrasa
 
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
 
Keynote session - LOD2014 W3C event
Keynote session - LOD2014 W3C eventKeynote session - LOD2014 W3C event
Keynote session - LOD2014 W3C event
 
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
 
(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LOD(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LOD
 
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
 
Web Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext SearchWeb Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext Search
 
Theory behind Image Compression and Semantic Search
Theory behind Image Compression and Semantic SearchTheory behind Image Compression and Semantic Search
Theory behind Image Compression and Semantic Search
 
SHACL: Shaping the Big Ball of Data Mud
SHACL: Shaping the Big Ball of Data MudSHACL: Shaping the Big Ball of Data Mud
SHACL: Shaping the Big Ball of Data Mud
 
Two graph data models : RDF and Property Graphs
Two graph data models : RDF and Property GraphsTwo graph data models : RDF and Property Graphs
Two graph data models : RDF and Property Graphs
 

Similar to VALA Tech Camp 2017: Intro to Wikidata & SPARQL

Intro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-AthensIntro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-Athens
Stoitsis Giannis
 

Similar to VALA Tech Camp 2017: Intro to Wikidata & SPARQL (20)

Intro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-AthensIntro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-Athens
 
Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012
 
Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University Library
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013
 
Linked Open Data: A simple how-to
Linked Open Data: A simple how-toLinked Open Data: A simple how-to
Linked Open Data: A simple how-to
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Making the semantic web work
Making the semantic web workMaking the semantic web work
Making the semantic web work
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
 
The nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologiesThe nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologies
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
 
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod Gmod
 
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
 
Informal presentation about RES
Informal presentation about RESInformal presentation about RES
Informal presentation about RES
 
Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016
 
The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015
 
Research Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibilityResearch Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibility
 
Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 

More from Jane Frazier

Flying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) librariesFlying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) libraries
Jane Frazier
 

More from Jane Frazier (14)

Ontology Modelling 101
Ontology Modelling 101Ontology Modelling 101
Ontology Modelling 101
 
Research Vocabularies Australia: vocabularies as a national service
Research Vocabularies Australia: vocabularies as a national serviceResearch Vocabularies Australia: vocabularies as a national service
Research Vocabularies Australia: vocabularies as a national service
 
Day in the life of a data librarian [presentation for ANU 23Things group]
Day in the life of a data librarian [presentation for ANU 23Things group]Day in the life of a data librarian [presentation for ANU 23Things group]
Day in the life of a data librarian [presentation for ANU 23Things group]
 
Intro to metadata, RIF-CS, RDA records [ANU 2016]
Intro to metadata, RIF-CS, RDA records [ANU 2016]Intro to metadata, RIF-CS, RDA records [ANU 2016]
Intro to metadata, RIF-CS, RDA records [ANU 2016]
 
Research data and output management
Research data and output managementResearch data and output management
Research data and output management
 
Controlled vocabularies for health & medicine
Controlled vocabularies for health & medicineControlled vocabularies for health & medicine
Controlled vocabularies for health & medicine
 
CSIRO Summer of Vocabularies
CSIRO Summer of VocabulariesCSIRO Summer of Vocabularies
CSIRO Summer of Vocabularies
 
Flying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) librariesFlying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) libraries
 
Subject tagging: Recommendations for Dryad curators and scientists
Subject tagging: Recommendations for Dryad curators and scientistsSubject tagging: Recommendations for Dryad curators and scientists
Subject tagging: Recommendations for Dryad curators and scientists
 
Data curation at Dryad Digital Repository: A former curator's perspective
Data curation at Dryad Digital Repository: A former curator's perspectiveData curation at Dryad Digital Repository: A former curator's perspective
Data curation at Dryad Digital Repository: A former curator's perspective
 
Toward linked data: Library of Congress Medium of Performance Thesaurus
Toward linked data: Library of Congress Medium of Performance Thesaurus Toward linked data: Library of Congress Medium of Performance Thesaurus
Toward linked data: Library of Congress Medium of Performance Thesaurus
 
A Bibliographic Overview of English-Language Opera Translation
A Bibliographic Overview of English-Language Opera TranslationA Bibliographic Overview of English-Language Opera Translation
A Bibliographic Overview of English-Language Opera Translation
 
Music Information Retrieval: A Literature Review
Music Information Retrieval: A Literature ReviewMusic Information Retrieval: A Literature Review
Music Information Retrieval: A Literature Review
 
The Library of Congress Medium of Performance Thesaurus: Deployment through t...
The Library of Congress Medium of Performance Thesaurus: Deployment through t...The Library of Congress Medium of Performance Thesaurus: Deployment through t...
The Library of Congress Medium of Performance Thesaurus: Deployment through t...
 

Recently uploaded

如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
0uyfyq0q4
 
Fuzzy Sets decision making under information of uncertainty
Fuzzy Sets decision making under information of uncertaintyFuzzy Sets decision making under information of uncertainty
Fuzzy Sets decision making under information of uncertainty
RafigAliyev2
 
一比一原版西悉尼大学毕业证成绩单如何办理
一比一原版西悉尼大学毕业证成绩单如何办理一比一原版西悉尼大学毕业证成绩单如何办理
一比一原版西悉尼大学毕业证成绩单如何办理
pyhepag
 
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
Valters Lauzums
 
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
pyhepag
 
Audience Researchndfhcvnfgvgbhujhgfv.pptx
Audience Researchndfhcvnfgvgbhujhgfv.pptxAudience Researchndfhcvnfgvgbhujhgfv.pptx
Audience Researchndfhcvnfgvgbhujhgfv.pptx
Stephen266013
 
Exploratory Data Analysis - Dilip S.pptx
Exploratory Data Analysis - Dilip S.pptxExploratory Data Analysis - Dilip S.pptx
Exploratory Data Analysis - Dilip S.pptx
DilipVasan
 
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
dq9vz1isj
 
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
Amil baba
 
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
fztigerwe
 

Recently uploaded (20)

Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"Aggregations - The Elasticsearch "GROUP BY"
Aggregations - The Elasticsearch "GROUP BY"
 
如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
如何办理滑铁卢大学毕业证(Waterloo毕业证)成绩单本科学位证原版一比一
 
Fuzzy Sets decision making under information of uncertainty
Fuzzy Sets decision making under information of uncertaintyFuzzy Sets decision making under information of uncertainty
Fuzzy Sets decision making under information of uncertainty
 
一比一原版西悉尼大学毕业证成绩单如何办理
一比一原版西悉尼大学毕业证成绩单如何办理一比一原版西悉尼大学毕业证成绩单如何办理
一比一原版西悉尼大学毕业证成绩单如何办理
 
NOAM AAUG Adobe Summit 2024: Summit Slam Dunks
NOAM AAUG Adobe Summit 2024: Summit Slam DunksNOAM AAUG Adobe Summit 2024: Summit Slam Dunks
NOAM AAUG Adobe Summit 2024: Summit Slam Dunks
 
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
Data Analytics for Digital Marketing Lecture for Advanced Digital & Social Me...
 
Artificial_General_Intelligence__storm_gen_article.pdf
Artificial_General_Intelligence__storm_gen_article.pdfArtificial_General_Intelligence__storm_gen_article.pdf
Artificial_General_Intelligence__storm_gen_article.pdf
 
Generative AI for Trailblazers_ Unlock the Future of AI.pdf
Generative AI for Trailblazers_ Unlock the Future of AI.pdfGenerative AI for Trailblazers_ Unlock the Future of AI.pdf
Generative AI for Trailblazers_ Unlock the Future of AI.pdf
 
Data Visualization Exploring and Explaining with Data 1st Edition by Camm sol...
Data Visualization Exploring and Explaining with Data 1st Edition by Camm sol...Data Visualization Exploring and Explaining with Data 1st Edition by Camm sol...
Data Visualization Exploring and Explaining with Data 1st Edition by Camm sol...
 
How to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data AnalyticsHow to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data Analytics
 
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
一比一原版加利福尼亚大学尔湾分校毕业证成绩单如何办理
 
Audience Researchndfhcvnfgvgbhujhgfv.pptx
Audience Researchndfhcvnfgvgbhujhgfv.pptxAudience Researchndfhcvnfgvgbhujhgfv.pptx
Audience Researchndfhcvnfgvgbhujhgfv.pptx
 
Exploratory Data Analysis - Dilip S.pptx
Exploratory Data Analysis - Dilip S.pptxExploratory Data Analysis - Dilip S.pptx
Exploratory Data Analysis - Dilip S.pptx
 
Machine Learning for Accident Severity Prediction
Machine Learning for Accident Severity PredictionMachine Learning for Accident Severity Prediction
Machine Learning for Accident Severity Prediction
 
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
1:1原版定制伦敦政治经济学院毕业证(LSE毕业证)成绩单学位证书留信学历认证
 
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
NO1 Best Kala Jadu Expert Specialist In Germany Kala Jadu Expert Specialist I...
 
Easy and simple project file on mp online
Easy and simple project file on mp onlineEasy and simple project file on mp online
Easy and simple project file on mp online
 
123.docx. .
123.docx.                                 .123.docx.                                 .
123.docx. .
 
basics of data science with application areas.pdf
basics of data science with application areas.pdfbasics of data science with application areas.pdf
basics of data science with application areas.pdf
 
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
如何办理哥伦比亚大学毕业证(Columbia毕业证)成绩单原版一比一
 

VALA Tech Camp 2017: Intro to Wikidata & SPARQL