-
-
Save tonyfast/26dc917693ec170b39d4436956006f82 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: shacl | |
channels: | |
- conda-forge | |
- defaults | |
dependencies: | |
- pyshacl | |
- pyld | |
- pandas | |
- notebook | |
- python >=3.7,<3.8 | |
- jupyterlab >=0.35,<0.36 | |
- ipywidgets | |
- nodejs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# An exploration of Data Shapes \n", | |
"> ### _ft. [SHACL](https://www.w3.org/TR/shacl/#shacl-example), [JSON-LD](https://www.w3.org/2018/jsonld-cg-reports/json-ld/)_\n", | |
"\n", | |
"> > ```bash\n", | |
"conda install -c conda-forge ipython pyshacl pandas pyld\n", | |
"```" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import pyshacl, json, pandas as pd, IPython\n", | |
"from pyld import jsonld\n", | |
"from rdflib import Graph, RDFS, Namespace, OWL" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"`Namespace`s provide the basis of shared language about data and shapes." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"__ns__ = {\n", | |
" \"rdfs\": RDFS,\n", | |
" \"sh\": Namespace(\"http://www.w3.org/ns/shacl#\"),\n", | |
" \"ex\": Namespace(\"http://example.com/ns#\"),\n", | |
" \"owl\": OWL\n", | |
"}" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"A JSON-LD `@context` describes a shape of _input_ or _output_ data." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"__id__ = {\"@type\": \"@id\"}\n", | |
"__context__ = {\n", | |
" \"@version\": 1.1,\n", | |
" **{k: str(v) for k, v in __ns__.items()},\n", | |
" \"a\": {\"@id\": \"@type\"},\n", | |
" \"ex:birthDate\": {\"@type\": \"xsd:date\"},\n", | |
" \"sh:path\": __id__,\n", | |
" \"sh:nodeKind\": __id__,\n", | |
" \"sh:property\": __id__,\n", | |
" \"sh:targetClass\": __id__,\n", | |
" \"sh:ignoredProperties\": __id__,\n", | |
" \"sh:class\": __id__,\n", | |
" \"ex:ssn\": {\"@type\": \"xsd:string\"},\n", | |
" \"ex:worksFor\": __id__\n", | |
"}" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"Some utility functions for writing about shapes." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def parse(doc):\n", | |
" g = Graph()\n", | |
" [g.bind(k, v) for k, v in __ns__.items()]\n", | |
" g.parse(\n", | |
" format=\"json-ld\",\n", | |
" data=json.dumps(\n", | |
" jsonld.flatten(doc, \n", | |
" options=dict(\n", | |
" expandContext={\"@context\": __context__}\n", | |
" ))))\n", | |
" return g" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"the `d`ata `g`raph, as explored in the [SHACL documentation](https://www.w3.org/TR/shacl/#shacl-example)." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"dg = parse({\"@graph\": [\n", | |
" {\"@id\": \"ex:Alice\",\n", | |
" \"a\": \"ex:Person\",\n", | |
" \"ex:ssn\": \"987-65-432A\"\n", | |
" },\n", | |
" {\"@id\": \"ex:Bob\",\n", | |
" \"a\": \"ex:Person\",\n", | |
" \"ex:ssn\": [\"123-45-6789\"],\n", | |
" },\n", | |
" {\"@id\": \"ex:Calvin\",\n", | |
" \"a\": \"ex:Person\",\n", | |
" \"ex:birthDate\": \"1971-07-07\",\n", | |
" \"ex:worksFor\": \"ex:UntypedCompany\"\n", | |
" }\n", | |
"]})" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"What does it look like in other formats?" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def pgprint(g, title=None, fmt=\"ttl\", mode=\"turtle\"):\n", | |
" title = title or f\"{len(g)} triples\"\n", | |
" return IPython.display.Markdown(\n", | |
" f\"\"\"## {title}\\n\"\"\"\n", | |
" f\"\"\"```{mode}\\n{g.serialize(format=fmt).decode(\"utf-8\")}```\"\"\"\n", | |
" )" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## the fact graph\n", | |
"```turtle\n", | |
"@prefix ex: <http://example.com/ns#> .\n", | |
"@prefix owl: <http://www.w3.org/2002/07/owl#> .\n", | |
"@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n", | |
"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n", | |
"@prefix sh: <http://www.w3.org/ns/shacl#> .\n", | |
"@prefix xml: <http://www.w3.org/XML/1998/namespace> .\n", | |
"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n", | |
"\n", | |
"ex:Alice a ex:Person ;\n", | |
" ex:ssn \"987-65-432A\"^^<xsd:string> .\n", | |
"\n", | |
"ex:Bob a ex:Person ;\n", | |
" ex:ssn \"123-45-6789\"^^<xsd:string> .\n", | |
"\n", | |
"ex:Calvin a ex:Person ;\n", | |
" ex:birthDate \"1971-07-07\"^^<xsd:date> ;\n", | |
" ex:worksFor ex:UntypedCompany .\n", | |
"\n", | |
"```" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"execution_count": 7, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"pgprint(dg, \"the fact graph\")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"What do we know about `@types`?" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def count_types(g, title=None):\n", | |
" df = pd.DataFrame(g.query(\"\"\"\n", | |
" select distinct ?type_we_have_instance_of (COUNT(?s) as ?instances_of_type)\n", | |
" where {?s rdf:type ?type_we_have_instance_of}\n", | |
" group by ?type_we_have_instance_of\n", | |
" \"\"\", initNs=__ns__).bindings)\n", | |
" title = title or f\"{df.shape[0]} by {df.shape[1]}\"\n", | |
" display(IPython.display.Markdown(f\"## {title}\"))\n", | |
" display(df)\n", | |
" return df" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"The `s`hape `g`raph." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## 1 by 2" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>instances_of_type</th>\n", | |
" <th>type_we_have_instance_of</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>3</td>\n", | |
" <td>http://example.com/ns#Person</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" instances_of_type type_we_have_instance_of\n", | |
"0 3 http://example.com/ns#Person" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"count_types(dg);" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"sg = parse({\"@graph\": [{\n", | |
" \"@id\": \"ex:PersonShape\",\n", | |
" \"a\": \"sh:NodeShape\",\n", | |
" \"sh:targetClass\": \"ex:Person\", # Applies to all persons\n", | |
" \"sh:closed\": True,\n", | |
" \"sh:ignoredProperties\": \"rdf:type\",\n", | |
" \"sh:property\": [{ # _:b1\n", | |
" \"sh:path\": \"ex:ssn\", # constrains the values of ex:ssn\n", | |
" \"sh:maxCount\": 1,\n", | |
" \"sh:datatype\": \"xsd:string\",\n", | |
" \"sh:pattern\": \"^\\\\d{3}-\\\\d{2}-\\\\d{4}$\",\n", | |
" }, { # _:b2\n", | |
" \"sh:path\": \"ex:worksFor\",\n", | |
" \"sh:class\": \"ex:Company\",\n", | |
" \"sh:nodeKind\": \"sh:IRI\"\n", | |
" },\n", | |
" ]}]})" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## the shape graph\n", | |
"```turtle\n", | |
"@prefix ex: <http://example.com/ns#> .\n", | |
"@prefix owl: <http://www.w3.org/2002/07/owl#> .\n", | |
"@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n", | |
"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n", | |
"@prefix sh: <http://www.w3.org/ns/shacl#> .\n", | |
"@prefix xml: <http://www.w3.org/XML/1998/namespace> .\n", | |
"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n", | |
"\n", | |
"ex:PersonShape a sh:NodeShape ;\n", | |
" sh:closed true ;\n", | |
" sh:ignoredProperties <rdf:type> ;\n", | |
" sh:property [ sh:datatype \"xsd:string\" ;\n", | |
" sh:maxCount 1 ;\n", | |
" sh:path ex:ssn ;\n", | |
" sh:pattern \"^\\\\d{3}-\\\\d{2}-\\\\d{4}$\" ],\n", | |
" [ sh:class ex:Company ;\n", | |
" sh:nodeKind sh:IRI ;\n", | |
" sh:path ex:worksFor ] ;\n", | |
" sh:targetClass ex:Person .\n", | |
"\n", | |
"```" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"execution_count": 11, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"pgprint(sg, \"the shape graph\")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 21, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
" import typing" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 22, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
" import rdflib" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 27, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
" df: typing.Union[\n", | |
" typing.ForwardRef('rdflib.namespace.OWL.Table'),\n", | |
" typing.ForwardRef('Schema[df.to_json(orient=\"table\")]'),\n", | |
" typing.ForwardRef('pandas.DataFrame'), \n", | |
" ]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 28, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
" qb = rdflib.namespace.Namespace('http://purl.org/linked-data/cube#')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 32, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
" import requests" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 36, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"<Graph identifier=N0d71d11395df4191897cdd10031116aa (<class 'rdflib.graph.Graph'>)>" | |
] | |
}, | |
"execution_count": 36, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
" cube = Graph()\n", | |
" cube.parse(qb.DataSet, format=\"turtle\")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 38, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## 265 triples\n", | |
"```turtle\n", | |
"@prefix dcterms: <http://purl.org/dc/terms/> .\n", | |
"@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n", | |
"@prefix owl: <http://www.w3.org/2002/07/owl#> .\n", | |
"@prefix qb: <http://purl.org/linked-data/cube#> .\n", | |
"@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n", | |
"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n", | |
"@prefix scovo: <http://purl.org/NET/scovo#> .\n", | |
"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n", | |
"@prefix void: <http://rdfs.org/ns/void#> .\n", | |
"@prefix xml: <http://www.w3.org/XML/1998/namespace> .\n", | |
"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n", | |
"\n", | |
"qb:Attachable a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Attachable (abstract)\"@en ;\n", | |
" rdfs:comment \"Abstract superclass for everything that can have attributes and dimensions\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> .\n", | |
"\n", | |
"qb:AttributeProperty a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Attribute property\"@en ;\n", | |
" rdfs:comment \"The class of components which represent attributes of observations in the cube, e.g. unit of measurement\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentProperty ;\n", | |
" owl:disjointWith qb:MeasureProperty .\n", | |
"\n", | |
"qb:CodedProperty a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Coded property\"@en ;\n", | |
" rdfs:comment \"Superclass of all coded ComponentProperties\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentProperty .\n", | |
"\n", | |
"qb:ComponentProperty a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Component property (abstract)\"@en ;\n", | |
" rdfs:comment \"Abstract super-property of all properties representing dimensions, attributes or measures\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf rdf:Property .\n", | |
"\n", | |
"qb:ComponentSet a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Component set\"@en ;\n", | |
" rdfs:comment \"Abstract class of things which reference one or more ComponentProperties\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> .\n", | |
"\n", | |
"qb:ComponentSpecification a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Component specification\"@en ;\n", | |
" rdfs:comment \"Used to define properties of a component (attribute, dimension etc) which are specific to its usage in a DSD.\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentSet .\n", | |
"\n", | |
"qb:DataSet a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Data set\"@en ;\n", | |
" rdfs:comment \"Represents a collection of observations, possibly organized into various slices, conforming to some common dimensional structure.\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:Attachable ;\n", | |
" owl:equivalentClass scovo:Dataset .\n", | |
"\n", | |
"qb:DataStructureDefinition a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Data structure definition\"@en ;\n", | |
" rdfs:comment \"Defines the structure of a DataSet or slice\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentSet .\n", | |
"\n", | |
"qb:DimensionProperty a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Dimension property\"@en ;\n", | |
" rdfs:comment \"The class of components which represent the dimensions of the cube\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:CodedProperty,\n", | |
" qb:ComponentProperty ;\n", | |
" owl:disjointWith qb:MeasureProperty .\n", | |
"\n", | |
"qb:HierarchicalCodeList a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Hierarchical Code List\"@en ;\n", | |
" rdfs:comment \"Represents a generalized hierarchy of concepts which can be used for coding. The hierarchy is defined by one or more roots together with a property which relates concepts in the hierarchy to thier child concept . The same concepts may be members of multiple hierarchies provided that different qb:parentChildProperty values are used for each hierarchy.\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> .\n", | |
"\n", | |
"qb:MeasureProperty a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Measure property\"@en ;\n", | |
" rdfs:comment \"The class of components which represent the measured value of the phenomenon being observed\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentProperty ;\n", | |
" owl:disjointWith qb:AttributeProperty,\n", | |
" qb:DimensionProperty .\n", | |
"\n", | |
"qb:Observation a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Observation\"@en ;\n", | |
" rdfs:comment \"A single observation in the cube, may have one or more associated measured values\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:Attachable ;\n", | |
" owl:equivalentClass scovo:Item .\n", | |
"\n", | |
"qb:ObservationGroup a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Observation Group\"@en ;\n", | |
" rdfs:comment \"A, possibly arbitrary, group of observations.\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> .\n", | |
"\n", | |
"qb:Slice a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Slice\"@en ;\n", | |
" rdfs:comment \"Denotes a subset of a DataSet defined by fixing a subset of the dimensional values, component properties on the Slice\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:Attachable,\n", | |
" qb:ObservationGroup .\n", | |
"\n", | |
"qb:SliceKey a rdfs:Class,\n", | |
" owl:Class ;\n", | |
" rdfs:label \"Slice key\"@en ;\n", | |
" rdfs:comment \"Denotes a subset of the component properties of a DataSet which are fixed in the corresponding slices\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:subClassOf qb:ComponentSet .\n", | |
"\n", | |
"qb:attribute a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"attribute\"@en ;\n", | |
" rdfs:comment \"An alternative to qb:componentProperty which makes explicit that the component is a attribute\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:AttributeProperty ;\n", | |
" rdfs:subPropertyOf qb:componentProperty .\n", | |
"\n", | |
"qb:codeList a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"code list\"@en ;\n", | |
" rdfs:comment \"gives the code list associated with a CodedProperty\"@en ;\n", | |
" rdfs:domain qb:CodedProperty ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range [ owl:unionOf ( skos:ConceptScheme skos:Collection qb:HierarchicalCodeList ) ] .\n", | |
"\n", | |
"qb:component a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"component specification\"@en ;\n", | |
" rdfs:comment \"indicates a component specification which is included in the structure of the dataset\"@en ;\n", | |
" rdfs:domain qb:DataStructureDefinition ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:ComponentSpecification .\n", | |
"\n", | |
"qb:componentAttachment a rdf:Property ;\n", | |
" rdfs:label \"component attachment\"@en ;\n", | |
" rdfs:comment \"Indicates the level at which the component property should be attached, this might an qb:DataSet, qb:Slice or qb:Observation, or a qb:MeasureProperty.\"@en ;\n", | |
" rdfs:domain qb:ComponentSpecification ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range rdfs:Class .\n", | |
"\n", | |
"qb:componentRequired a rdf:Property,\n", | |
" owl:DatatypeProperty ;\n", | |
" rdfs:label \"component required\"@en ;\n", | |
" rdfs:comment \"\"\"Indicates whether a component property is required (true) or optional (false) in the context of a DSD. Only applicable\n", | |
" to components correspond to an attribute. Defaults to false (optional).\"\"\"@en ;\n", | |
" rdfs:domain qb:ComponentSpecification ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range xsd:boolean .\n", | |
"\n", | |
"qb:concept a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"concept\"@en ;\n", | |
" rdfs:comment \"gives the concept which is being measured or indicated by a ComponentProperty\"@en ;\n", | |
" rdfs:domain qb:ComponentProperty ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range skos:Concept .\n", | |
"\n", | |
"qb:dataSet a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"data set\"@en ;\n", | |
" rdfs:comment \"indicates the data set of which this observation is a part\"@en ;\n", | |
" rdfs:domain qb:Observation ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:DataSet ;\n", | |
" owl:equivalentProperty scovo:dataset .\n", | |
"\n", | |
"qb:dimension a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"dimension\"@en ;\n", | |
" rdfs:comment \"An alternative to qb:componentProperty which makes explicit that the component is a dimension\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:DimensionProperty ;\n", | |
" rdfs:subPropertyOf qb:componentProperty .\n", | |
"\n", | |
"qb:hierarchyRoot a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:comment \"Specifies a root of the hierarchy. A hierarchy may have multiple roots but must have at least one.\"@en ;\n", | |
" rdfs:domain qb:HierarchicalCodeList ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> .\n", | |
"\n", | |
"qb:measure a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"measure\"@en ;\n", | |
" rdfs:comment \"An alternative to qb:componentProperty which makes explicit that the component is a measure\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:MeasureProperty ;\n", | |
" rdfs:subPropertyOf qb:componentProperty .\n", | |
"\n", | |
"qb:measureDimension a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"measure dimension\"@en ;\n", | |
" rdfs:comment \"An alternative to qb:componentProperty which makes explicit that the component is a measure dimension\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:DimensionProperty ;\n", | |
" rdfs:subPropertyOf qb:componentProperty .\n", | |
"\n", | |
"qb:measureType a qb:DimensionProperty,\n", | |
" rdf:Property ;\n", | |
" rdfs:label \"measure type\"@en ;\n", | |
" rdfs:comment \"Generic measure dimension, the value of this dimension indicates which measure (from the set of measures in the DSD) is being given by the obsValue (or other primary measure)\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:MeasureProperty .\n", | |
"\n", | |
"qb:observation a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"observation\"@en ;\n", | |
" rdfs:comment \"indicates a observation contained within this slice of the data set\"@en ;\n", | |
" rdfs:domain qb:ObservationGroup ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:Observation .\n", | |
"\n", | |
"qb:order a rdf:Property,\n", | |
" owl:DatatypeProperty ;\n", | |
" rdfs:label \"order\"@en ;\n", | |
" rdfs:comment \"indicates a priority order for the components of sets with this structure, used to guide presentations - lower order numbers come before higher numbers, un-numbered components come last\"@en ;\n", | |
" rdfs:domain qb:ComponentSpecification ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range xsd:int .\n", | |
"\n", | |
"qb:parentChildProperty a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"parent-child property\"@en ;\n", | |
" rdfs:comment \"Specifies a property which relates a parent concept in the hierarchy to a child concept.\"@en ;\n", | |
" rdfs:domain qb:HierarchicalCodeList ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range rdf:Property .\n", | |
"\n", | |
"qb:slice a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"slice\"@en ;\n", | |
" rdfs:comment \"Indicates a subset of a DataSet defined by fixing a subset of the dimensional values\"@en ;\n", | |
" rdfs:domain qb:DataSet ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:Slice ;\n", | |
" rdfs:subPropertyOf qb:observationGroup .\n", | |
"\n", | |
"qb:sliceKey a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"slice key\"@en ;\n", | |
" rdfs:comment \"indicates a slice key which is used for slices in this dataset\"@en ;\n", | |
" rdfs:domain qb:DataStructureDefinition ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:SliceKey .\n", | |
"\n", | |
"qb:sliceStructure a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"slice structure\"@en ;\n", | |
" rdfs:comment \"indicates the sub-key corresponding to this slice\"@en ;\n", | |
" rdfs:domain qb:Slice ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:SliceKey .\n", | |
"\n", | |
"qb:structure a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"structure\"@en ;\n", | |
" rdfs:comment \"indicates the structure to which this data set conforms\"@en ;\n", | |
" rdfs:domain qb:DataSet ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:DataStructureDefinition .\n", | |
"\n", | |
"qb:observationGroup a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"observation group\"@en ;\n", | |
" rdfs:comment \"Indicates a group of observations. The domain of this property is left open so that a group may be attached to different resources and need not be restricted to a single DataSet\"@en ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:ObservationGroup .\n", | |
"\n", | |
"qb:componentProperty a rdf:Property,\n", | |
" owl:ObjectProperty ;\n", | |
" rdfs:label \"component\"@en ;\n", | |
" rdfs:comment \"indicates a ComponentProperty (i.e. attribute/dimension) expected on a DataSet, or a dimension fixed in a SliceKey\"@en ;\n", | |
" rdfs:domain qb:ComponentSet ;\n", | |
" rdfs:isDefinedBy <http://purl.org/linked-data/cube> ;\n", | |
" rdfs:range qb:ComponentProperty .\n", | |
"\n", | |
"<http://purl.org/linked-data/cube> a owl:Ontology ;\n", | |
" rdfs:label \"The data cube vocabulary\" ;\n", | |
" dcterms:contributor [ foaf:mbox \"[email protected]\" ],\n", | |
" [ foaf:mbox \"[email protected]\" ],\n", | |
" [ foaf:mbox \"[email protected]\" ],\n", | |
" [ foaf:mbox \"[email protected]\" ],\n", | |
" [ foaf:mbox \"[email protected]\" ] ;\n", | |
" dcterms:created \"2010-07-12\"^^xsd:date ;\n", | |
" dcterms:license <http://www.opendatacommons.org/licenses/pddl/1.0/> ;\n", | |
" dcterms:modified \"2010-11-27\"^^xsd:date,\n", | |
" \"2013-03-02\"^^xsd:date,\n", | |
" \"2013-07-26\"^^xsd:date ;\n", | |
" dcterms:title \"Vocabulary for multi-dimensional (e.g. statistical) data publishing\" ;\n", | |
" rdfs:comment \"This vocabulary allows multi-dimensional data, such as statistics, to be published in RDF. It is based on the core information model from SDMX (and thus also DDI).\" ;\n", | |
" owl:versionInfo \"0.2\" .\n", | |
"\n", | |
"```" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"execution_count": 38, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
" pgprint(cube)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 19, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"floatyint = parse({\n", | |
" \"@graph\": [\n", | |
" {\"@id\": \"FloatyInt\", \"rdf:type\": \"rdf:Type\", \"rdf:subclassOf\": [\"xsd:int\", \"xsd:float\"]},\n", | |
" ]\n", | |
"})" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"py:pandas/DataFrame\n" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# list(floatyint)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## 1 by 2" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>instances_of_type</th>\n", | |
" <th>type_we_have_instance_of</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>1</td>\n", | |
" <td>http://www.w3.org/ns/shacl#NodeShape</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" instances_of_type type_we_have_instance_of\n", | |
"0 1 http://www.w3.org/ns/shacl#NodeShape" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"count_types(sg);" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"Running the [`pyshacl.Validator`](https://github.com/RDFLib/pySHACL) can validate, and conveniently infer new knowledge as described in the shape (and other ontologies)." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"v = pyshacl.Validator(dg, shacl_graph=sg, options={\"inference\": \"both\"})\n", | |
"conforms, rg, report = v.run()" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"Let's look at the report." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 14, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>focus</th>\n", | |
" <th>path</th>\n", | |
" <th>value</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://example.com/ns#Person</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#sameAs</td>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" <td>http://example.com/ns#ssn</td>\n", | |
" <td>987-65-432A</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#Thing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>http://example.com/ns#Alice</td>\n", | |
" <td>http://example.com/ns#ssn</td>\n", | |
" <td>987-65-432A</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" <td>http://example.com/ns#ssn</td>\n", | |
" <td>123-45-6789</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" <td>http://example.com/ns#ssn</td>\n", | |
" <td>123-45-6789</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#sameAs</td>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#Thing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>http://example.com/ns#Bob</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://example.com/ns#Person</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://example.com/ns#Person</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" <td>http://example.com/ns#birthDate</td>\n", | |
" <td>1971-07-07</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#Thing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" <td>http://example.com/ns#worksFor</td>\n", | |
" <td>http://example.com/ns#UntypedCompany</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#sameAs</td>\n", | |
" <td>http://example.com/ns#Calvin</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" focus \\\n", | |
"0 http://example.com/ns#Alice \n", | |
"1 http://example.com/ns#Alice \n", | |
"2 http://example.com/ns#Alice \n", | |
"3 http://example.com/ns#Alice \n", | |
"4 http://example.com/ns#Alice \n", | |
"5 http://example.com/ns#Bob \n", | |
"6 http://example.com/ns#Bob \n", | |
"7 http://example.com/ns#Bob \n", | |
"8 http://example.com/ns#Bob \n", | |
"9 http://example.com/ns#Bob \n", | |
"10 http://example.com/ns#Calvin \n", | |
"11 http://example.com/ns#Calvin \n", | |
"12 http://example.com/ns#Calvin \n", | |
"13 http://example.com/ns#Calvin \n", | |
"14 http://example.com/ns#Calvin \n", | |
"\n", | |
" path \\\n", | |
"0 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"1 http://www.w3.org/2002/07/owl#sameAs \n", | |
"2 http://example.com/ns#ssn \n", | |
"3 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"4 http://example.com/ns#ssn \n", | |
"5 http://example.com/ns#ssn \n", | |
"6 http://example.com/ns#ssn \n", | |
"7 http://www.w3.org/2002/07/owl#sameAs \n", | |
"8 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"9 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"10 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"11 http://example.com/ns#birthDate \n", | |
"12 http://www.w3.org/1999/02/22-rdf-syntax-ns#type \n", | |
"13 http://example.com/ns#worksFor \n", | |
"14 http://www.w3.org/2002/07/owl#sameAs \n", | |
"\n", | |
" value \n", | |
"0 http://example.com/ns#Person \n", | |
"1 http://example.com/ns#Alice \n", | |
"2 987-65-432A \n", | |
"3 http://www.w3.org/2002/07/owl#Thing \n", | |
"4 987-65-432A \n", | |
"5 123-45-6789 \n", | |
"6 123-45-6789 \n", | |
"7 http://example.com/ns#Bob \n", | |
"8 http://www.w3.org/2002/07/owl#Thing \n", | |
"9 http://example.com/ns#Person \n", | |
"10 http://example.com/ns#Person \n", | |
"11 1971-07-07 \n", | |
"12 http://www.w3.org/2002/07/owl#Thing \n", | |
"13 http://example.com/ns#UntypedCompany \n", | |
"14 http://example.com/ns#Calvin " | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"def vrprint(rg):\n", | |
" df = pd.DataFrame(rg.query(\"\"\"\n", | |
" select ?focus ?path ?value\n", | |
" where {\n", | |
" ?vr rdf:type sh:ValidationResult .\n", | |
" ?vr sh:focusNode ?focus .\n", | |
" ?vr sh:resultPath ?path .\n", | |
" ?vr sh:value ?value\n", | |
" }\n", | |
" order by ?focus\n", | |
" \"\"\", initNs=__ns__).bindings)\n", | |
" display(df)\n", | |
" return df\n", | |
"vrprint(rg);" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"Again, from the [SHACL documentation](https://www.w3.org/TR/shacl/#shacl-example):\n", | |
"\n", | |
"<blockquote><em>\n", | |
"<p>\n", | |
" The <a href=\"#dfn-validation-results\" class=\"internalDFN\" data-link-type=\"dfn\">validation results</a> are enclosed in a <a href=\"#dfn-validation-report\" class=\"internalDFN\" data-link-type=\"dfn\">validation report</a>. The first <a href=\"#dfn-validation-results\" class=\"internalDFN\" data-link-type=\"dfn\">validation result</a> is produced because <code>ex:Alice</code> has a <a href=\"#dfn-value\" class=\"internalDFN\" data-link-type=\"dfn\">value</a> for <code>ex:ssn</code> that does not match the regular\n", | |
" expression specified by the property <code>sh:regex</code>. The second <a href=\"#dfn-validation-results\" class=\"internalDFN\" data-link-type=\"dfn\">validation result</a> is produced because <code>ex:Bob</code> has more than the permitted\n", | |
" number of <a href=\"#dfn-value\" class=\"internalDFN\" data-link-type=\"dfn\">values</a> for the property <code>ex:ssn</code> as specified by the <code>sh:maxCount</code> of 1. The third <a href=\"#dfn-validation-results\" class=\"internalDFN\" data-link-type=\"dfn\">validation result</a> is produced because <code>ex:Calvin</code> has a <a href=\"#dfn-value\" class=\"internalDFN\" data-link-type=\"dfn\">value</a> for <code>ex:worksFor</code> that does not have an <code>rdf:type</code> triple that makes it a <a href=\"#dfn-shacl-instance\" class=\"internalDFN\" data-link-type=\"dfn\">SHACL instance</a> of <code>ex:Company</code>. The forth <a href=\"#dfn-validation-results\" class=\"internalDFN\" data-link-type=\"dfn\">validation result</a> is produced because the <a href=\"#dfn-shape\" class=\"internalDFN\" data-link-type=\"dfn\">shape</a> <code>ex:PersonShape</code> has the property <code>sh:closed</code> set to <code>true</code> but <code>ex:Calvin</code> uses the property <code>ex:birthDate</code> which is neither one of the predicates from any of the\n", | |
" <a href=\"#dfn-property-shape\" class=\"internalDFN\" data-link-type=\"dfn\">property shapes</a> of the shape, nor one of the properties listed using <code>sh:ignoredProperties</code>.\n", | |
" </p>\n", | |
" </em></blockquote>" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"Among the more fun parts are the `target_graph`, which includes all the _inferred_ types." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 15, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## the inferred graph\n", | |
"```turtle\n", | |
"@prefix ex: <http://example.com/ns#> .\n", | |
"@prefix owl: <http://www.w3.org/2002/07/owl#> .\n", | |
"@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n", | |
"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n", | |
"@prefix sh: <http://www.w3.org/ns/shacl#> .\n", | |
"@prefix xml: <http://www.w3.org/XML/1998/namespace> .\n", | |
"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n", | |
"\n", | |
"owl:Nothing a rdfs:Class,\n", | |
" rdfs:Resource,\n", | |
" owl:Class,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Resource,\n", | |
" owl:Nothing,\n", | |
" owl:Thing ;\n", | |
" owl:equivalentClass owl:Nothing ;\n", | |
" owl:sameAs owl:Nothing .\n", | |
"\n", | |
"owl:Thing a rdfs:Class,\n", | |
" rdfs:Resource,\n", | |
" owl:Class,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:equivalentClass rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:Thing .\n", | |
"\n", | |
"ex:Alice a ex:Person,\n", | |
" rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" ex:ssn \"987-65-432A\"^^<xsd:string> ;\n", | |
" owl:sameAs ex:Alice .\n", | |
"\n", | |
"ex:Bob a ex:Person,\n", | |
" rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" ex:ssn \"123-45-6789\"^^<xsd:string> ;\n", | |
" owl:sameAs ex:Bob .\n", | |
"\n", | |
"ex:Calvin a ex:Person,\n", | |
" rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" ex:birthDate \"1971-07-07\"^^<xsd:date> ;\n", | |
" ex:worksFor ex:UntypedCompany ;\n", | |
" owl:sameAs ex:Calvin .\n", | |
"\n", | |
"rdf:HTML a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs rdf:HTML .\n", | |
"\n", | |
"rdf:LangString a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs rdf:LangString .\n", | |
"\n", | |
"rdf:PlainLiteral a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs rdf:PlainLiteral .\n", | |
"\n", | |
"rdf:XMLLiteral a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs rdf:XMLLiteral .\n", | |
"\n", | |
"rdfs:comment a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs rdfs:comment .\n", | |
"\n", | |
"rdfs:isDefinedBy a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs rdfs:isDefinedBy .\n", | |
"\n", | |
"rdfs:label a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs rdfs:label .\n", | |
"\n", | |
"rdfs:seeAlso a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs rdfs:seeAlso .\n", | |
"\n", | |
"xsd:NCName a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:NCName .\n", | |
"\n", | |
"xsd:NMTOKEN a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:NMTOKEN .\n", | |
"\n", | |
"xsd:Name a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:Name .\n", | |
"\n", | |
"xsd:anyURI a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:anyURI .\n", | |
"\n", | |
"xsd:base64Binary a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:base64Binary .\n", | |
"\n", | |
"xsd:boolean a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:boolean .\n", | |
"\n", | |
"xsd:byte a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:byte .\n", | |
"\n", | |
"xsd:date a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:date .\n", | |
"\n", | |
"xsd:dateTime a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:dateTime .\n", | |
"\n", | |
"xsd:dateTimeStamp a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:dateTimeStamp .\n", | |
"\n", | |
"xsd:decimal a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:decimal .\n", | |
"\n", | |
"xsd:double a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:double .\n", | |
"\n", | |
"xsd:float a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:float .\n", | |
"\n", | |
"xsd:hexBinary a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:hexBinary .\n", | |
"\n", | |
"xsd:int a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:int .\n", | |
"\n", | |
"xsd:integer a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:integer .\n", | |
"\n", | |
"xsd:language a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:language .\n", | |
"\n", | |
"xsd:long a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:long .\n", | |
"\n", | |
"xsd:negativeInteger a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:negativeInteger .\n", | |
"\n", | |
"xsd:nonNegativeInteger a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:nonNegativeInteger .\n", | |
"\n", | |
"xsd:nonPositiveInteger a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:nonPositiveInteger .\n", | |
"\n", | |
"xsd:normalizedString a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:normalizedString .\n", | |
"\n", | |
"xsd:positiveInteger a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:positiveInteger .\n", | |
"\n", | |
"xsd:short a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:short .\n", | |
"\n", | |
"xsd:string a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:string .\n", | |
"\n", | |
"xsd:time a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:time .\n", | |
"\n", | |
"xsd:token a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:token .\n", | |
"\n", | |
"xsd:unsignedByte a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:unsignedByte .\n", | |
"\n", | |
"xsd:unsignedInt a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:unsignedInt .\n", | |
"\n", | |
"xsd:unsignedLong a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:unsignedLong .\n", | |
"\n", | |
"xsd:unsignedShort a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:sameAs xsd:unsignedShort .\n", | |
"\n", | |
"owl:backwardCompatibleWith a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:backwardCompatibleWith .\n", | |
"\n", | |
"owl:deprecated a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:deprecated .\n", | |
"\n", | |
"owl:incompatibleWith a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:incompatibleWith .\n", | |
"\n", | |
"owl:priorVersion a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:priorVersion .\n", | |
"\n", | |
"owl:versionInfo a rdfs:Resource,\n", | |
" owl:AnnotationProperty,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:versionInfo .\n", | |
"\n", | |
"ex:UntypedCompany a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs ex:UntypedCompany .\n", | |
"\n", | |
"\"1971-07-07\"^^<xsd:date> a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs \"1971-07-07\"^^<xsd:date> .\n", | |
"\n", | |
"\"123-45-6789\"^^<xsd:string> a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs \"123-45-6789\"^^<xsd:string> .\n", | |
"\n", | |
"\"987-65-432A\"^^<xsd:string> a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs \"987-65-432A\"^^<xsd:string> .\n", | |
"\n", | |
"ex:birthDate a rdf:Property ;\n", | |
" rdfs:subPropertyOf ex:birthDate ;\n", | |
" owl:equivalentProperty ex:birthDate ;\n", | |
" owl:sameAs ex:birthDate .\n", | |
"\n", | |
"ex:ssn a rdf:Property ;\n", | |
" rdfs:subPropertyOf ex:ssn ;\n", | |
" owl:equivalentProperty ex:ssn ;\n", | |
" owl:sameAs ex:ssn .\n", | |
"\n", | |
"ex:worksFor a rdf:Property ;\n", | |
" rdfs:subPropertyOf ex:worksFor ;\n", | |
" owl:equivalentProperty ex:worksFor ;\n", | |
" owl:sameAs ex:worksFor .\n", | |
"\n", | |
"rdf:type a rdf:Property ;\n", | |
" rdfs:subPropertyOf rdf:type ;\n", | |
" owl:equivalentProperty rdf:type ;\n", | |
" owl:sameAs rdf:type .\n", | |
"\n", | |
"rdfs:subClassOf a rdf:Property ;\n", | |
" rdfs:subPropertyOf rdfs:subClassOf ;\n", | |
" owl:equivalentProperty rdfs:subClassOf ;\n", | |
" owl:sameAs rdfs:subClassOf .\n", | |
"\n", | |
"rdfs:subPropertyOf a rdf:Property ;\n", | |
" rdfs:subPropertyOf rdfs:subPropertyOf ;\n", | |
" owl:equivalentProperty rdfs:subPropertyOf ;\n", | |
" owl:sameAs rdfs:subPropertyOf .\n", | |
"\n", | |
"owl:equivalentClass a rdf:Property ;\n", | |
" rdfs:subPropertyOf owl:equivalentClass ;\n", | |
" owl:equivalentProperty owl:equivalentClass ;\n", | |
" owl:sameAs owl:equivalentClass .\n", | |
"\n", | |
"owl:equivalentProperty a rdf:Property ;\n", | |
" rdfs:subPropertyOf owl:equivalentProperty ;\n", | |
" owl:equivalentProperty owl:equivalentProperty ;\n", | |
" owl:sameAs owl:equivalentProperty .\n", | |
"\n", | |
"owl:sameAs a rdf:Property ;\n", | |
" rdfs:subPropertyOf owl:sameAs ;\n", | |
" owl:equivalentProperty owl:sameAs ;\n", | |
" owl:sameAs owl:sameAs .\n", | |
"\n", | |
"ex:Person a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs ex:Person .\n", | |
"\n", | |
"rdfs:Class a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Class,\n", | |
" owl:Class ;\n", | |
" owl:equivalentClass rdfs:Class,\n", | |
" owl:Class ;\n", | |
" owl:sameAs rdfs:Class .\n", | |
"\n", | |
"owl:Class a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Class,\n", | |
" owl:Class ;\n", | |
" owl:equivalentClass rdfs:Class,\n", | |
" owl:Class ;\n", | |
" owl:sameAs owl:Class .\n", | |
"\n", | |
"rdf:Property owl:sameAs rdf:Property .\n", | |
"\n", | |
"owl:AnnotationProperty a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs owl:AnnotationProperty .\n", | |
"\n", | |
"rdfs:Literal a rdfs:Datatype,\n", | |
" rdfs:Resource,\n", | |
" owl:DataRange,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Literal ;\n", | |
" owl:equivalentClass rdfs:Literal ;\n", | |
" owl:sameAs rdfs:Literal .\n", | |
"\n", | |
"rdfs:Datatype a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Datatype,\n", | |
" owl:DataRange ;\n", | |
" owl:equivalentClass rdfs:Datatype,\n", | |
" owl:DataRange ;\n", | |
" owl:sameAs rdfs:Datatype .\n", | |
"\n", | |
"owl:DataRange a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Datatype,\n", | |
" owl:DataRange ;\n", | |
" owl:equivalentClass rdfs:Datatype,\n", | |
" owl:DataRange ;\n", | |
" owl:sameAs owl:DataRange .\n", | |
"\n", | |
"rdfs:Resource a rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" rdfs:subClassOf rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:equivalentClass rdfs:Resource,\n", | |
" owl:Thing ;\n", | |
" owl:sameAs rdfs:Resource .\n", | |
"\n", | |
"```" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"execution_count": 15, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"pgprint(v.target_graph, \"the inferred graph\")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 19, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/markdown": [ | |
"## ...But Still Just Three [`ex:People`](https://example.com/#People)" | |
], | |
"text/plain": [ | |
"<IPython.core.display.Markdown object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>instances_of_type</th>\n", | |
" <th>type_we_have_instance_of</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>61</td>\n", | |
" <td>http://www.w3.org/2000/01/rdf-schema#Resource</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>61</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#Thing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>36</td>\n", | |
" <td>http://www.w3.org/2000/01/rdf-schema#Datatype</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>36</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#DataRange</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>2</td>\n", | |
" <td>http://www.w3.org/2000/01/rdf-schema#Class</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>9</td>\n", | |
" <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#Pro...</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>9</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#AnnotationProperty</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>2</td>\n", | |
" <td>http://www.w3.org/2002/07/owl#Class</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>3</td>\n", | |
" <td>http://example.com/ns#Person</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" instances_of_type type_we_have_instance_of\n", | |
"0 61 http://www.w3.org/2000/01/rdf-schema#Resource\n", | |
"1 61 http://www.w3.org/2002/07/owl#Thing\n", | |
"2 36 http://www.w3.org/2000/01/rdf-schema#Datatype\n", | |
"3 36 http://www.w3.org/2002/07/owl#DataRange\n", | |
"4 2 http://www.w3.org/2000/01/rdf-schema#Class\n", | |
"5 9 http://www.w3.org/1999/02/22-rdf-syntax-ns#Pro...\n", | |
"6 9 http://www.w3.org/2002/07/owl#AnnotationProperty\n", | |
"7 2 http://www.w3.org/2002/07/owl#Class\n", | |
"8 3 http://example.com/ns#Person" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"count_types(v.target_graph, \n", | |
" f\"\"\"...But Still Just Three [`ex:People`](https://example.com/#People)\"\"\");" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 17, | |
"metadata": { | |
"jupyter": { | |
"source_hidden": true | |
} | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<style>\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://www.w3.org\"],\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://github.com\"],\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://example.com\"] {\n", | |
" padding-right: 0.8em;\n", | |
" background-image: url(\"https://www.w3.org/Icons/WWW/w3c_home_nb-v.svg\");\n", | |
" background-repeat: no-repeat;\n", | |
" background-size: auto 0.61em;\n", | |
" background-position: right 0;\n", | |
"}\n", | |
"\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://github.com\"] {\n", | |
" background-image: url(\"https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/mark-github.svg\");\n", | |
"}\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://example.com\"] {\n", | |
" background-image: url(\"https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/squirrel.svg\");\n", | |
"}\n", | |
"</style>\n" | |
], | |
"text/plain": [ | |
"<IPython.core.display.HTML object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"%%html\n", | |
"<style>\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://www.w3.org\"],\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://github.com\"],\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://example.com\"] {\n", | |
" padding-right: 0.8em;\n", | |
" background-image: url(\"https://www.w3.org/Icons/WWW/w3c_home_nb-v.svg\");\n", | |
" background-repeat: no-repeat;\n", | |
" background-size: auto 0.61em;\n", | |
" background-position: right 0;\n", | |
"}\n", | |
"\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://github.com\"] {\n", | |
" background-image: url(\"https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/mark-github.svg\");\n", | |
"}\n", | |
".jp-RenderedHTMLCommon a[href^=\"https://example.com\"] {\n", | |
" background-image: url(\"https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/squirrel.svg\");\n", | |
"}\n", | |
"</style>" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3", | |
"language": "python", | |
"name": "python3" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.7.3" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 2 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jupyter labextension install @jupyter-widgets/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment