File: read_nquads.Rd

package info (click to toggle)
r-cran-rdflib 0.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 572 kB
  • sloc: xml: 66; sh: 13; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/write_nquads.R
\name{read_nquads}
\alias{read_nquads}
\title{read an nquads file}
\usage{
read_nquads(file, ...)
}
\arguments{
\item{file}{path to nquads file}

\item{...}{additional arguments to \code{\link[=rdf_parse]{rdf_parse()}}}
}
\value{
an rdf object.  See \code{\link[=rdf_parse]{rdf_parse()}}
}
\description{
read an nquads file
}
\examples{
tmp <- tempfile(fileext = ".nq")
library(datasets)
write_nquads(iris, tmp)
read_nquads(tmp)

}