This page documents the illustrative IRIs used in the dataset package
vignettes. They are examples only and do not point to real datasets.
The base namespace in vignette("rdf", package = "dataset") is:
https://dataset.dataobservatory.eu/examples/dataset.html#
Although these example IRIs use .html# in the base namespace, the .html part
does not imply that the resource is literally an HTML file. In RDF, any absolute
IRI is valid. We use this form only for illustration, because the R package
documentation infrastructure is not designed to support full content
negotiation between human-readable HTML and machine-readable Turtle files.
In real publishing scenarios, a bare namespace ending with /dataset# is more
conventional.
Example observation 1 (not real data).
Example observation 2 (not real data).
Example observation 3 (not real data).
In real publishing scenarios, you would replace these with persistent URIs that identify actual datasets and their observations. For example, a DOI-based identifier such as:
https://doi.org/10.5281/zenodo.14917851#obs:1
could be used to refer to the first observation in a dataset archived at Zenodo.
A Turtle serialization of the same example definitions is also available:
@prefix ex: <https://dataset.dataobservatory.eu/examples/dataset#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix dcat: <http://www.w3.org/ns/dcat#> . ex:obs1 a dcat:Observation ; rdfs:label "Example observation 1 (not real data)" . ex:obs2 a dcat:Observation ; rdfs:label "Example observation 2 (not real data)" . ex:obs3 a dcat:Observation ; rdfs:label "Example observation 3 (not real data)" .
In fact, semantic applications know that they should not even read this HTML page, but instead go directly to the dataset.ttl version, as it is a World Wide Web standard to disseminate data and metadata.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.