n_triple | R Documentation |
Create a single N-Triple triple.
n_triple(s, p, o)
s |
The subject of a triplet. |
p |
The predicate of a triplet. |
o |
The object of a triplet. |
N-Triples is an easy to parse line-based subset of Turtle to serialize
RDF. An N-Triple triple is a sequence of RDF terms representing the subject,
predicate and object of an RDF Triple. Use n_triples
to serialize
multiple statements.
A character vector containing one N-Triple string.
s <- "http://example.org/show/218"
p <- "http://www.w3.org/2000/01/rdf-schema#label"
o <- "That Seventies Show"
n_triple(s, p, o)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.