| describe | R Documentation |
Writes provenance and Dublin Core metadata of a dataset to a file or connection in N-Triples format.
describe(x, con)
x |
A |
con |
A connection or a character string path (e.g. from |
Writes N-Triples to con and invisibly returns x.
test_ds <- dataset_df(
rowid = defined(c("eg:1", "eg:2"),
namespace = "http://example.com/dataset#"
),
geo = defined(
gdp$geo[1:2],
label = "Country",
concept = "http://example.com/prop/geo",
namespace = "https://eionet.europa.eu/geo/$1"
),
dataset_bibentry = dublincore(
title = "Example Dataset",
creator = person("John", "Doe")
)
)
# returns invisibly the contents of the text file serialisation:
testdescription <- describe(test_ds, con = tempfile())
testdescription
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.