Add a statement to the current RDF graph.
Add a statement to the current RDF graph.
Dataset of RDF graph
the triple to be added.
new Dataset of triples containing this statement.
Add a list of statements to the current RDF graph.
Add a list of statements to the current RDF graph.
Dataset of RDF graph
the list of triples to be added.
new Dataset of triples containing this list of statements.
Determine if a triple is present in this RDF graph.
Determine if a triple is present in this RDF graph.
Dataset of triples
the triple to be checked
true if the statement s is in this RDF graph, false otherwise
Determine whether this RDF graph contains any triples with a given (subject, predicate, object) pattern.
Determine whether this RDF graph contains any triples with a given (subject, predicate, object) pattern.
Dataset of triples
the subject (None for any)
the predicate (None for any)
the object (None for any)
true if there exists within this RDF graph a triple with (S, P, O) pattern, false otherwise
Determine if all of the statements in an RDF graph are also contained in this RDF graph.
Determine if all of the statements in an RDF graph are also contained in this RDF graph.
Dataset of triples
the other RDF graph containing the statements to be tested
true if all of the statements in RDF graph are also contained in this RDF graph and false otherwise.
Determine if any of the triples in an RDF graph are also contained in this RDF graph.
Determine if any of the triples in an RDF graph are also contained in this RDF graph.
Dataset of triples
the other RDF graph containing the statements to be tested
true if any of the statements in RDF graph are also contained in this RDF graph and false otherwise.
Returns a new RDF graph that contains the difference between the current RDF graph and the given RDF graph.
Returns a new RDF graph that contains the difference between the current RDF graph and the given RDF graph.
Dataset of RDF graph
the other RDF graph
the difference of both RDF graphs
Returns an Dataset of triples that match with the given input.
Returns an Dataset of triples that match with the given input.
Dataset of triples
the triple to be checked
Dataset of triples that match the given input
Returns an Dataset of triples that match with the given input.
Returns an Dataset of triples that match with the given input.
Dataset of triples
the subject
the predicate
the object
Dataset of triples
Get triples.
Get triples.
DataFrame of triples.
DataFrame which contains list of the triples.
Returns a new RDF graph that contains the intersection of the current RDF graph with the given RDF graph.
Returns a new RDF graph that contains the intersection of the current RDF graph with the given RDF graph.
Dataset of RDF graph
the other RDF graph
the intersection of both RDF graphs
Removes a statement from the current RDF graph.
Removes a statement from the current RDF graph. The statement with the same subject, predicate and object as that supplied will be removed from the model.
Dataset of RDF graph
the statement to be removed.
new Dataset of triples without this statement.
Removes all the statements from the current RDF graph.
Removes all the statements from the current RDF graph. The statements with the same subject, predicate and object as those supplied will be removed from the model.
Dataset of RDF graph
the list of statements to be removed.
new Dataset of triples without these statements.
Write N-Triples from a given Dataset of triples
Write N-Triples from a given Dataset of triples
Dataset of RDF graph
path to the file containing N-Triples
Return the number of triples.
Return the number of triples.
Dataset of triples
the number of triples
Convert a Dataset[Triple] into a DataFrame.
Convert a Dataset[Triple] into a DataFrame.
Dataset of triples.
a DataFrame of triples.
Convert a Dataset[Triple into a RDD[Triple].
Convert a Dataset[Triple into a RDD[Triple].
Dataset of triples.
a RDD of triples.
Return the union of this RDF graph and another one.
Return the union of this RDF graph and another one.
Dataset of RDF graph
the other RDF graph
graph (union of both)
Return the union all of RDF graphs.
Return the union all of RDF graphs.
Dataset of RDF graph
sequence of Datasets of other RDF graph
graph (union of all)
Spark based implementation of Dataset of triples.