Lift data from tabular data¤
Introduction¤
This beginner-level tutorial shows how you can build a Knowledge Graph based on tabular input data. This tutorial will use a comma-separated value file (.csv), it applied equally to other tabular inputs such as excel files (.xlsx) or database tables (jdbc).
Tutorial
The complete tutorial is available as a Marketplace Package. You can install this package
- by using the web interface ( Packages → Search → “Product Data Demo”) or
-
by using the command line interface
Sample Material¤
The following material is used in this tutorial, you should download the files and have them at hand throughout the tutorial:
-
Sample vocabulary which describes the data in the CSV files: products_vocabulary.nt
-
Sample CSV file: services.csv
Info
ServiceID ServiceName Products ProductManager Price Y704-9764759 Product Analysis O491-3823912, I965-1821441, Z655-3173353, … Lambert.Faust@company.org 748,40 EUR I241-8776317 Component Confabulation Z249-1364492, L557-1467804, C721-7900144, … Corinna.Ludwig@company.org 1082,00 EUR … … … … …
1 Install the required Ontologies / Vocabularies¤
The vocabulary contains the classes and properties needed to map the data into the new structure in the Knowledge Graph.
-
Click the Knowledge graphs icon in the main menu under EXPLORE. In the Graphs drop-down, click Add new graph and select the New graph from File option.
-
In the next step, select the RDF file via browse or add it via drag-and-drop. Define the Target graph URI (should be populated automatically as
http://ld.company.org/prod-vocab/as derived from the uploaded file) and confirm to add / replace this graph in the final dialog step. Tick the Add new graph checkbox and click Upload.
2 Uploading of the data (file)¤
-
Click the Projects icon in the main menu under the BUILD section. Then click on Create new in the top right corner to create a new project.
-
In the Create new item window, select Project and click Add. The Create new item of type Project window appears.
-
Fill in the required details such as Title and Description. In this example we will use:
- Title:
Tutorial: Lift data from CSV tabular data - Description:
This beginner-level tutorial shows how you can build a Knowledge Graph based on input data from a comma-separated value file (.csv). https://documentation.eccenca.com/latest/build/lift-data-from-tabular-data-such-as-csv-xslx-or-database-tables
Alternatively, import the existing project by clicking Import Project File and selecting the file from your system.
- Title:
-
Click Create. Your project is created.
-
Within your project, click on Create workflow.
-
Fill out a label and click Create.
-
Drag and drop the services.csv sample file on the grid.
-
Optionally change the Label, then click on Create.
Instead of uploading the services.csv sample file into Corporate Memory, you can also load it into a SQL database and access it from Corporate Memory using the JDBC protocol.
-
Click again on Create new in the top right corner. In the Create new item window, select JDBC endpoint type and click Add.
-
Define a Label for the dataset, specify the JDBC Driver connection URL, the table name and the user and password to connect to the database. In this example we will use:
- Name:
Services_ServiceDB - JDBC Driver Connection URL:
jdbc:mysql://mysql:3306/ServicesDB - table:
Services - username:
root - password:
***
- Name:
-
Click Create.
Info
The general form of the JDBC connection string is:
Default JDBC connection strings for popular Relational Database Management Systems:
Vendor Default JDBC Connection String Default Port Microsoft SQL Server jdbc:sqlserver: :1433/ 1433 PostgreSQL jdbc:postgresql: :5432/ 5432 MySQL jdbc:mysql: :3306/ 3306 MariaDB jdbc:mariadb: :3306/ 3306 IBM DB2* jdbc:db2: :50000/ 50000 Oracle* jdbc:oracle:thin: :1521/ 1521 Info
* IBM DB2 and Oracle JDBC drivers are not by default part of Corporate Memory, but can be added.
Info
Instead of selecting a table you can also specify a custom SQL query in the source query field.
3 Creating the Transformation¤
The transformation defines how an input dataset (e.g. CSV) will be transformed into an output dataset (e.g. Knowledge Graph).
-
Click on the right dot and select Connect to the newly created Transformation.
-
Fill out the Label with
Lift Service Database. -
Scroll down to Target vocabularies, select Select individual vocabularies and choose
pv: Products-Vocabin the drop-down list. -
Click on Create.
4 Configure Mapping¤
-
Click on the 3 dots from the previous created Transformation an choose Mapping Editor.
-
Expand the Mapping menu with the small arrow in the top right corner.
-
Click Edit to create a base mapping.
-
Define the Target entity type from the vocabulary, the URI pattern and a label for the mapping. After typing the Target entity type you must click the custom entry:
Servicesuggestion. Typing alone leaves it unset. In this example we will use:- Target entity type:
Service -
URI pattern:
- Click Create custom pattern
- Insert
http://ld.company.org/prod-inst/{ServiceID}, wherehttp://ld.company.org/prod-inst/is a common prefix for the instances in this use case, and{ServiceID}is a placeholder that will resolve to the column of that name.
-
An optional Label:
Service
- Target entity type:
-
Click Save
Example RDF triple in our Knowledge Graph based on the mapping definition:
-
Evaluate your mapping by clicking the button in the Examples of target data property to see at most three generated base URIs.
We have now created the Service entities in the Knowledge Graph. As a next step, we will add the name of the Service entity.
-
Click Add mapping on the lower right and select Add value mapping.
-
Define the Target property, the Data type, the Value path (column name) and a Label for your value mapping. In this example we will use:
- Target Property:
name - Data type:
String - Value path:
ServiceName(which corresponds to the column of that name) - An optional Label:
service name
- Target Property:
-
Click Save.
5 Evaluate a Transformation¤
Go to the Transform evaluation tab of your transformation to view a list of generated entities. By clicking one of the generated entities, more details are provided.
6 Build the Knowledge Graph¤
-
Switch back to the Workflow view.
-
Select the orange dot on the right side and click Connect to newly created Knowledge graph.
-
Define a Label for the Knowledge Graph and provide a Graph URI. Leave all the other parameters at the default values. In this example we will use:
- Label:
Service Knowledge Graph - Graph:
http://ld.company.org/prod-instances/
After typing the Graph URI you must click the Custom entry:
Service Knowledge Graphsuggestion. Typing alone leaves it unset. - Label:
-
Click Create.
-
Press the button and click on Save and run workflow.
-
Verify a successful run by selecting Workflow report.
-
Click the Knowledge graphs icon in the main menu under EXPLORE.
-
Optionally, you can click on the Settings Icon and add more columns to the view.
-
Here you can add
namefor example. -
Finally you can use the Explore Knowledge Graphs module to (re-)view of the created Knowledge Graph:
http://ld.company.org/prod-instances/




























