n_triples | R Documentation |
Create triple statements to annotate your dataset with standard, interoperable metadata.
n_triples(triples)
triples |
Concatenated N-Triples created with |
N-Triples is an easy to parse line-based subset of Turtle to serialize RDF. See RDF 1.2 N-Triples. A line-based syntax for an RDF graph.
A character vector containing 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.