SlideShare a Scribd company logo
1 of 120
Download to read offline
CHIS: Open Data e Linked Open Data
7: Creating Open Data
Vittorio Scarano
vitsca@dia.unisa.it
Dipartimento di Informatica
Università di Salerno (Italy)
1	CHIS:	Open	Data	and	Linked	Open	Data
•  Acquisition of data
•  by using data provided by others (and collecting them)
•  by generating new data (survey, observations)
•  Extraction of data
•  conversion from original format into something usable
for further analysis and processing
•  Cleaning and transforming
•  sanitizing data, but also improving it (disaggregation
and enrichment)
CHIS:	Open	Data	and	Linked	Open	Data	 2	
Data Pipeline - 1
•  Analysis of data
•  to answer particular questions that are not easily
recognizable in data
•  Presentation and visualization of data
•  to make more clear and effective arguments
•  dependent on the audience 
Some of these topics will be treated with more details
CHIS:	Open	Data	and	Linked	Open	Data	 3	
Data Pipeline - 2
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 4	
Data Pipeline
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 5	
Data Pipeline
•  Qualitative data
•  description of a quality
•  can be experienced and observed but not measured
•  Quantitative data
•  expressed by numbers and can be measured
•  discrete data (integer)
•  continuous data (floating point)
•  Categorical data
•  describe a category which the item belongs to
CHIS:	Open	Data	and	Linked	Open	Data	 6	
Acquisition of data: which kind?
•  Data for humans
•  able to understand natural language J
•  unstructured data
•  often found in documents (PDFs): not machine-readable
•  Data for computers
•  structured and in a machine-readable format
•  CSV: comma separated value as an example
•  spreadsheets for simple use
CHIS:	Open	Data	and	Linked	Open	Data	 7	
Acquisition of data: for whom?
•  Data provenance
•  Good documentation is needed
•  to preserve the “chain of custody” to identify the owner and
the processing that took place
•  Some automatic tools
•  Open Refine (formerly known as Google Refine)
•  If some custom procedures (programs) are used, they
should be available open source on repositories
•  GitHub, Sourceforge etc.
CHIS:	Open	Data	and	Linked	Open	Data	 8	
Acquisition of data: where from?
•  Finding data that was already been released
•  care in ensuring that the Open license is followed
•  Getting hold of more data
•  new data from official sources, via Freedom of
Information Act (FOIA) requests
•  data that comes from scraping websites 
•  Collecting data
•  gathering data and entering it into a spreadsheet
CHIS:	Open	Data	and	Linked	Open	Data	 9	
Acquisition of Data: the sources
•  Government 
•  some open data sections on their website
•  often more at central government than local
•  national institute of statistics, etc
•  Organizations
•  often offers interesting data (World Bank, World Health
Organisation)
•  Science
•  projects and institutions (NASA, etc.) 
CHIS:	Open	Data	and	Linked	Open	Data	 10	
The kind of sources
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 11	
Data Pipeline
•  Often unstructured data is released with PDF
•  If the PDF is the scanned version of documents,
there is not much to do L
•  Else… there are many converters, that sometimes
are messy with tables
•  Tabula software (MIT open license) is very useful
•  versions for Windows, Mac, Linux available
CHIS:	Open	Data	and	Linked	Open	Data	 12	
Extracting data from PDF
14
15
•  Sometimes tables are in HTML pages
•  Of course, you could
•  copy and paste the data into a spreadsheet
•  messy, requires a lot of cleaning
•  learn HTML and see the data from the table and rewrite it
•  Or.. you can use Google Sheets that has a very
simple method to import a table into a spreadsheet 
•  and then you can esport it as you wish! J
CHIS:	Open	Data	and	Linked	Open	Data	 16	
Scraping the web
CHIS:	Open	Data	and	Linked	Open	Data	 17
CHIS:	Open	Data	and	Linked	Open	Data	 18
CHIS:	Open	Data	and	Linked	Open	Data	 20
CHIS:	Open	Data	and	Linked	Open	Data	 21
CHIS:	Open	Data	and	Linked	Open	Data	 22
•  The first cell where the IMPORTHTML function was
used remains with that value, which means that..
•  … the whole dataset is read EVERY TIME 
•  you cannot modify it, filter or analyze it!
•  Easy way to get rid of it:
•  export it in a CSV
•  then re-import it into a new sheet in Google Docs
•  J 
CHIS:	Open	Data	and	Linked	Open	Data	 23	
A warning
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 24	
Data Pipeline
•  Easy and familiar tool
•  extremely more powerful and useful than average
users think
•  Originated since the very beginning of computing
•  Visicalc, LotusNotes, .. 
•  Many opportunities available: 
•  Google Spreadsheets
•  Open/Libre Office
•  Microsoft Excel
CHIS:	Open	Data	and	Linked	Open	Data	 25	
“The” tool: spreadsheet!
CHIS:	Open	Data	and	Linked	Open	Data	 26	
A quick comparison
CHIS:	Open	Data	and	Linked	Open	Data	 27
•  Sorting and filtering allow you to “know” your
dataset
•  .. to understand what kind of information it
contains
•  .. and understand how it can contribute to
knowledge
•  But before that, we must “clean up the data”
CHIS:	Open	Data	and	Linked	Open	Data	 33	
How to “know” your dataset
34	
Cleaning up data
•  Formatting does not come along with data
•  Whitespace and new lines
•  Blank cells
•  Numbers that are NOT numbers
•  Data in inconvenient places
•  .. and many others!
CHIS:	Open	Data	and	Linked	Open	Data	 35	
Some common mistakes
•  All the formatting is
not useful
•  Select all the cells
(CTRL+A)
•  Use Format and
then “Clear
formatting”
CHIS:	Open	Data	and	Linked	Open	Data	 36	
Eliminate Formatting
CHIS:	Open	Data	and	Linked	Open	Data	 37
CHIS:	Open	Data	and	Linked	Open	Data	 38
•  Important to make the data readable for
processing
•  Additional blanks, or newlines create problems
•  For example: the first item has a newline
CHIS:	Open	Data	and	Linked	Open	Data	 39	
Whitespace and linebreaks
CHIS:	Open	Data	and	Linked	Open	Data	 40
CHIS:	Open	Data	and	Linked	Open	Data	 41
CHIS:	Open	Data	and	Linked	Open	Data	 42
•  TRIM(): Clears trailing and leading blanks 
•  CLEAN(): Clears non printable characters
•  From a column B, it is possible to create a new
column C with “cleaned data”
•  and copy and pasted “only values” into a third column
D to get the cleaned data
•  .. and only then, you can get rid of the first two
columns B and C and only deal with the “cleaned” D
column
CHIS:	Open	Data	and	Linked	Open	Data	 43	
Some useful functions
CHIS:	Open	Data	and	Linked	Open	Data	 44
CHIS:	Open	Data	and	Linked	Open	Data	 45
47
•  Often empty cells are present and creates a lot of
problems 
•  Useful functions are COUNTBLANK, ISBLANK
•  Useful also is the filter mechanism 
•  can check the number of empty cells
•  Careful when replacing empty cell
•  the message should be clear that there are no data, not
that the value is 0
CHIS:	Open	Data	and	Linked	Open	Data	 48	
Empty cells
•  National formatting: 
•  in italian, the floating point is a the comma
•  so 3,14 is NOT a Pi in a non-italian spreadsheet: it is a string!
•  while 3,141 is three thousand, one hundred forty one!
•  the virgola separates the thousands
•  Wrong blanks in between digits
•  it is not a number: is a string
•  Wrong numbers means that we cannot compute
•  sum, average, min, max, etc. 
CHIS:	Open	Data	and	Linked	Open	Data	 49	
Numbers that are not numbers
CHIS:	Open	Data	and	Linked	Open	Data
CHIS:	Open	Data	and	Linked	Open	Data	 53	
make	room	
for	the	new	
rows
CHIS:	Open	Data	and	Linked	Open	Data	 54
CHIS:	Open	Data	and	Linked	Open	Data	 55
CHIS:	Open	Data	and	Linked	Open	Data	 56
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 57	
Data Pipeline
•  Useful for summarizing tables 
•  without creating new tables
•  without creating new columns
•  without writing formla
•  Of course, pivot table is only a tool
•  data analysis is a very complex topic
•  and we are just “scratching the
surface” of it! 
CHIS:	Open	Data	and	Linked	Open	Data	 58	
Pivot table
Let’s start from a simple table
Create a pivot table (with the data)
Empty pivot table (new sheet)
Select “Group”, “Col”, “Values”
You can choose different summaries
How to structure data
A pivot table with two rows
•  The columns are ordered in alphabetical order
•  “April” before “February” L
•  Solutions 
1.  use the number to indicate the month: 1, 2, .. , 12
•  but the name is not very communicative on the table 
2.  use a string that retain the alphabetical order such as
•  “01- January”, “02-February”, etc. 
•  In this way we have both order and information
on the column headers
A visualization problem
Change the values (Find&Replace)
CHIS:	Open	Data	and	Linked	Open	 67
The meeting table, now…
•  Acquisition of Data
•  Extraction of Data
•  Cleaning and transforming Data
•  Analysis of Data
•  Presentation and visualization of Data
CHIS:	Open	Data	and	Linked	Open	Data	 70	
Data Pipeline
CHIS:	Open	Data	and	Linked	Open	Data	 71	
Difficult… always difficult!
•  Communicating visually information that can be
complex, in the right way
•  Often, spreadsheets offer many “exotic” ways of
defining charts
•  often, not useful to convey information
•  A running example on how to improve a chart
CHIS:	Open	Data	and	Linked	Open	Data	 72	
Building graphs and charts
The	starDng	
point!
CHIS:	Open	Data	and	Linked	Open	Data	 74	
Get	rid	of	
3D!
CHIS:	Open	Data	and	Linked	Open	Data	 75	
No	
background
CHIS:	Open	Data	and	Linked	Open	Data	 76	
No	Dck	
marks
CHIS:	Open	Data	and	Linked	Open	Data	 77	
Larger	text
CHIS:	Open	Data	and	Linked	Open	Data	 78	
No	decimal	
point!
CHIS:	Open	Data	and	Linked	Open	Data	 79	
$	in	the	axis!
CHIS:	Open	Data	and	Linked	Open	Data	 80	
Legenda	on	
top
CHIS:	Open	Data	and	Linked	Open	Data	 81	
Easier	to	
read!	and	no	
“red”	sign
CHIS:	Open	Data	and	Linked	Open	Data	 82	
Less	
relevance	to	
budget
CHIS:	Open	Data	and	Linked	Open	Data	 83	
PaTern	in	
Dme
CHIS:	Open	Data	and	Linked	Open	Data	 84	
Change	in	
scale	to	see	
differences
CHIS:	Open	Data	and	Linked	Open	Data	 85	
No	legend
CHIS:	Open	Data	and	Linked	Open	Data	 86	
Easy	printout
CHIS:	Open	Data	and	Linked	Open	Data	 87	
Only	show	
variance!
CHIS:	Open	Data	and	Linked	Open	Data	 88	
Only	show	
percentage!
CHIS:	Open	Data	and	Linked	Open	Data	 89
Different relationships to be explained with charts
1.  Time-series
2.  Ranking
3.  Part-to-whole
4.  Deviation
5.  Distribution
6.  Correlation
7.  Geospatial
CHIS:	Open	Data	and	Linked	Open	Data	 90	
Relationships with charts
1. Timeseries
91
2. Ranking - 1
2. Ranking - 2
3. Part-to-whole
Pie-chart! (highly debated..!)
Problem: pick the largest (?)
And now???
And now? J
The only acceptable pie-chart?
4. Deviation
5. Distribution
Beware the average… this..
… this..
.. and this, have the same avg=55k!
6. Correlation
105
•  “Post hoc ergo propter hoc”
•  A correlation between two variables does not imply
that one causes the other
•  Known logical fallacy
•  epidemiological studies showed that women taking
combined hormone replacement therapy (HRT) had a
lower-than-average incidence of coronary heart disease
(CHD): HRT was protective against CHD
•  women undertaking HRT were more likely to be from higher
socio-economic groups (ABC1), with better-than-average
diet and exercise regimens: fewer CHR
“Correlation does not mean causation”
Some hilarious examples - 1
Some hilarious examples - 2
Some hilarious examples - 3
More	available	at	hTp://www.tylervigen.com/spurious-correlaDons
6. Correlation - 2
7. Geospatial
Another	classificaDon
The	best	chart	ever!	Minard	(1869)	
CHIS:	Open	Data	and	Linked	Open	Data	 117
•  Part of the material comes with license CC
•  picture “Bath time” by archer10 (CC-A-SA 2.0)
•  Bibliography: 
•  "Data wrangling handbook", OKF https://media.readthedocs.org/
pdf/datapatterns/latest/datapatterns.pdf 
•  School of Data, OKF, http://schoolofdata.org/courses/ 
•  “Telling compelling stories with Numbers”, Stephen Few,
Perceptual Edge.
http://www.actuate.com/download/acd2012/Telling-Compelling-
Stories-with-Numbers.pdf
•  “Show Me the Numbers: Designing Tables and Graphs to
Enlighten”, Second Edition, Stephen Few, Analytics Press,2012
•  Choosing a good chart, Andrew Abela:
http://img.labnol.org/di/choosing_a_good_chart2.pdf 
CHIS:	Open	Data	and	Linked	Open	Data	 118	
Reading list and credits
•  Part of the work was funded by the
ROUTE-TO-PA H2020 project
•  www.routetopa.eu for more info
CHIS:	Open	Data	and	Linked	Open	Data	 119	
Acknowledgments
The	project	has	received	funding	from	the	
European	 Union’s	 Horizon	 2020	 research	
and	 innova<on	 programme	 under	 grant	
agreement	No	645860.
•  Author: Vittorio Scarano,
ROUTE-TO-PA project
•  vitsca@dia.unisa.it
•  License: This Work is licensed
with Creative Commons
Attribution-ShareAlike 4.0
International (CC BY-SA 4.0)
•  https://creativecommons.org/
licenses/by-sa/4.0/ 
•  Available onSlideShare
CHIS:	Open	Data	and	Linked	Open	Data	 120	
License

More Related Content

What's hot

The Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the EnterpriseThe Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the EnterprisePeter Haase
 
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...Anna Maria Tammaro
 
ETHorama: Map-based access to digital information resources
ETHorama: Map-based access to digital information resourcesETHorama: Map-based access to digital information resources
ETHorama: Map-based access to digital information resourcesETH-Bibliothek
 
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...LIBER Europe
 
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...LIBER Europe
 
From Open Access to Open Data: Collaborative Work in the University Libraries...
From Open Access to Open Data: Collaborative Work in the University Libraries...From Open Access to Open Data: Collaborative Work in the University Libraries...
From Open Access to Open Data: Collaborative Work in the University Libraries...LIBER Europe
 

What's hot (6)

The Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the EnterpriseThe Information Workbench - Linked Data and Semantic Wikis in the Enterprise
The Information Workbench - Linked Data and Semantic Wikis in the Enterprise
 
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...
Data curator: who is s / he?
Findings of the IFLA Library Theory and Research...
 
ETHorama: Map-based access to digital information resources
ETHorama: Map-based access to digital information resourcesETHorama: Map-based access to digital information resources
ETHorama: Map-based access to digital information resources
 
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...
Digital Humanities Clinics – Leading Dutch Librarians into DH. Lotte Wilms, N...
 
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...
Applying Bourdieu's Field Theory to MLS Curricula Development. Charlotte Nord...
 
From Open Access to Open Data: Collaborative Work in the University Libraries...
From Open Access to Open Data: Collaborative Work in the University Libraries...From Open Access to Open Data: Collaborative Work in the University Libraries...
From Open Access to Open Data: Collaborative Work in the University Libraries...
 

Viewers also liked

ROUTE-TO-PA Computational Analytics in SPOD
ROUTE-TO-PA Computational Analytics in SPODROUTE-TO-PA Computational Analytics in SPOD
ROUTE-TO-PA Computational Analytics in SPODroutetopa
 
OpenDataCourse-01-WhyOpenData
OpenDataCourse-01-WhyOpenDataOpenDataCourse-01-WhyOpenData
OpenDataCourse-01-WhyOpenDataroutetopa
 
OpenDataCourse-03-HowToMakeSuccessfulOpenData
OpenDataCourse-03-HowToMakeSuccessfulOpenDataOpenDataCourse-03-HowToMakeSuccessfulOpenData
OpenDataCourse-03-HowToMakeSuccessfulOpenDataroutetopa
 
OpenDataCourse-02-WhatIsOpenData
OpenDataCourse-02-WhatIsOpenDataOpenDataCourse-02-WhatIsOpenData
OpenDataCourse-02-WhatIsOpenDataroutetopa
 
OpenDataCourse-04-HowToMakeOpenData
OpenDataCourse-04-HowToMakeOpenDataOpenDataCourse-04-HowToMakeOpenData
OpenDataCourse-04-HowToMakeOpenDataroutetopa
 
Presentazione del Progetto Hetor (italian)
Presentazione del Progetto Hetor (italian)Presentazione del Progetto Hetor (italian)
Presentazione del Progetto Hetor (italian)routetopa
 

Viewers also liked (6)

ROUTE-TO-PA Computational Analytics in SPOD
ROUTE-TO-PA Computational Analytics in SPODROUTE-TO-PA Computational Analytics in SPOD
ROUTE-TO-PA Computational Analytics in SPOD
 
OpenDataCourse-01-WhyOpenData
OpenDataCourse-01-WhyOpenDataOpenDataCourse-01-WhyOpenData
OpenDataCourse-01-WhyOpenData
 
OpenDataCourse-03-HowToMakeSuccessfulOpenData
OpenDataCourse-03-HowToMakeSuccessfulOpenDataOpenDataCourse-03-HowToMakeSuccessfulOpenData
OpenDataCourse-03-HowToMakeSuccessfulOpenData
 
OpenDataCourse-02-WhatIsOpenData
OpenDataCourse-02-WhatIsOpenDataOpenDataCourse-02-WhatIsOpenData
OpenDataCourse-02-WhatIsOpenData
 
OpenDataCourse-04-HowToMakeOpenData
OpenDataCourse-04-HowToMakeOpenDataOpenDataCourse-04-HowToMakeOpenData
OpenDataCourse-04-HowToMakeOpenData
 
Presentazione del Progetto Hetor (italian)
Presentazione del Progetto Hetor (italian)Presentazione del Progetto Hetor (italian)
Presentazione del Progetto Hetor (italian)
 

Similar to Creating Open Data

Welcome-slides-durham-tech
Welcome-slides-durham-techWelcome-slides-durham-tech
Welcome-slides-durham-techdjl0525
 
datamining-introduction.pdf
datamining-introduction.pdfdatamining-introduction.pdf
datamining-introduction.pdfssuser3e6464
 
Lecture_1_Intro.pdf
Lecture_1_Intro.pdfLecture_1_Intro.pdf
Lecture_1_Intro.pdfpaijitk
 
Introducition to Data scinece compiled by hu
Introducition to Data scinece compiled by huIntroducition to Data scinece compiled by hu
Introducition to Data scinece compiled by huwekineheshete
 
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016CLARIAH
 
Data Tools cosystem_for_non_programmers
Data Tools cosystem_for_non_programmersData Tools cosystem_for_non_programmers
Data Tools cosystem_for_non_programmersitnig
 
Data tools ecosystem for non-programmers
Data tools ecosystem for non-programmersData tools ecosystem for non-programmers
Data tools ecosystem for non-programmersOutliers Collective
 
Using Graph and Transformer Embeddings for Vector Based Retrieval
Using Graph and Transformer Embeddings for Vector Based RetrievalUsing Graph and Transformer Embeddings for Vector Based Retrieval
Using Graph and Transformer Embeddings for Vector Based RetrievalSujit Pal
 
Linked Open Data in Romania
Linked Open Data in RomaniaLinked Open Data in Romania
Linked Open Data in RomaniaVlad Posea
 
Large-Scale Data Extraction, Structuring and Matching using Python and Spark
Large-Scale Data Extraction, Structuring and Matching using Python and SparkLarge-Scale Data Extraction, Structuring and Matching using Python and Spark
Large-Scale Data Extraction, Structuring and Matching using Python and SparkDeep Kayal
 
01 access howtointroduction
01 access howtointroduction01 access howtointroduction
01 access howtointroductionRebecca Jones
 
Presentation on Big Data Analytics
Presentation on Big Data AnalyticsPresentation on Big Data Analytics
Presentation on Big Data AnalyticsS P Sajjan
 
DATA preprocessing.pptx
DATA preprocessing.pptxDATA preprocessing.pptx
DATA preprocessing.pptxChandra Meena
 
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Srinath Reddy
 

Similar to Creating Open Data (20)

Welcome-slides-durham-tech
Welcome-slides-durham-techWelcome-slides-durham-tech
Welcome-slides-durham-tech
 
datamining-introduction.pdf
datamining-introduction.pdfdatamining-introduction.pdf
datamining-introduction.pdf
 
Data pre processing
Data pre processingData pre processing
Data pre processing
 
Delivering on the promise of a chemistry data repository for the world
Delivering on the promise of a chemistry data repository for the worldDelivering on the promise of a chemistry data repository for the world
Delivering on the promise of a chemistry data repository for the world
 
Introduction to Tableau
Introduction to Tableau Introduction to Tableau
Introduction to Tableau
 
Lecture_1_Intro.pdf
Lecture_1_Intro.pdfLecture_1_Intro.pdf
Lecture_1_Intro.pdf
 
Introducition to Data scinece compiled by hu
Introducition to Data scinece compiled by huIntroducition to Data scinece compiled by hu
Introducition to Data scinece compiled by hu
 
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016
WP4: overzicht van de voortgang van WP4 op de CLARIAH-dag 22 januari 2016
 
Data Tools cosystem_for_non_programmers
Data Tools cosystem_for_non_programmersData Tools cosystem_for_non_programmers
Data Tools cosystem_for_non_programmers
 
Data tools ecosystem for non-programmers
Data tools ecosystem for non-programmersData tools ecosystem for non-programmers
Data tools ecosystem for non-programmers
 
Using Graph and Transformer Embeddings for Vector Based Retrieval
Using Graph and Transformer Embeddings for Vector Based RetrievalUsing Graph and Transformer Embeddings for Vector Based Retrieval
Using Graph and Transformer Embeddings for Vector Based Retrieval
 
Linked Open Data in Romania
Linked Open Data in RomaniaLinked Open Data in Romania
Linked Open Data in Romania
 
Data Privacy at Scale
Data Privacy at ScaleData Privacy at Scale
Data Privacy at Scale
 
Large-Scale Data Extraction, Structuring and Matching using Python and Spark
Large-Scale Data Extraction, Structuring and Matching using Python and SparkLarge-Scale Data Extraction, Structuring and Matching using Python and Spark
Large-Scale Data Extraction, Structuring and Matching using Python and Spark
 
01 access howtointroduction
01 access howtointroduction01 access howtointroduction
01 access howtointroduction
 
Presentation on Big Data Analytics
Presentation on Big Data AnalyticsPresentation on Big Data Analytics
Presentation on Big Data Analytics
 
DATA preprocessing.pptx
DATA preprocessing.pptxDATA preprocessing.pptx
DATA preprocessing.pptx
 
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
Tableau - Learning Objectives for Data, Graphs, Filters, Dashboards and Advan...
 
06 Excel.pdf
06 Excel.pdf06 Excel.pdf
06 Excel.pdf
 
EDA.pptx
EDA.pptxEDA.pptx
EDA.pptx
 

Recently uploaded

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxannathomasp01
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 

Recently uploaded (20)

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 

Creating Open Data