| n_triples | R Documentation |
Create RDF triple statements to annotate your dataset with standard, interoperable metadata.
n_triples(triples)
triples |
A character vector of concatenated N-Triples, created with
|
N-Triples is a line-based serialization format for RDF. It is easy to parse and widely supported. For details, see the W3C RDF 1.2 N-Triples specification.
A character vector of unique N-Triple strings.
triple_1 <- n_triple(
"http://example.org/show/218",
"http://www.w3.org/2000/01/rdf-schema#label",
"That Seventies Show"
)
triple_2 <- n_triple(
"http://example.org/show/218",
"http://example.org/show/localName",
'"Cette Série des Années Septante"@fr-be'
)
n_triples(c(triple_1, triple_2, triple_1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.