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.
the other RDF graph
the intersection of both RDF graphs
net.sansa_stack.rdf.spark.graph.GraphOps.difference
Filter out the objects from a given graph, based on a specific function @func .
Filter out the objects from a given graph, based on a specific function @func .
a partial funtion.
Node] a subset of the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.filterObjects
Filter out the predicates from a given graph, based on a specific function @func .
Filter out the predicates from a given graph, based on a specific function @func .
a partial funtion.
Node] a subset of the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.filterPredicates
Filter out the subject from a given graph, based on a specific function @func .
Filter out the subject from a given graph, based on a specific function @func .
a partial funtion.
Node] a subset of the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.filterSubjects
Finds triplets of a given graph.
Finds triplets of a given graph.
graph which contains subset of the reduced graph.
net.sansa_stack.rdf.spark.graph.GraphOps.find
Gets objects of a given graph.
Gets objects of a given graph.
RDD[Node from the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.getObjects
Gets predicates of a given graph.
Gets predicates of a given graph.
RDD[Node from the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.getPredicates
Gets subjects of a given graph.
Gets subjects of a given graph.
RDD[Node from the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.getSubjects
Gets triples of a given graph.
Gets triples of a given graph.
RDD[Triple from the given graph.
net.sansa_stack.rdf.spark.graph.GraphOps.getTriples
Returns the lever at which vertex stands in the hierarchy.
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.
the other RDF graph
the difference of both RDF graphs
net.sansa_stack.rdf.spark.graph.GraphOps.intersection
Save the Graph to JSON format
Save the Graph to JSON format
the output
Compute the size of the graph
Compute the size of the graph
the number of edges in the graph.
net.sansa_stack.rdf.spark.graph.GraphOps.size
Convert a graph into a DataFrame.
Convert a graph into a DataFrame.
a DataFrame of triples.
net.sansa_stack.rdf.spark.graph.GraphOps.toDF
Convert a graph into a Dataset of Triple.
Convert a graph into a Dataset of Triple.
a Dataset of triples.
net.sansa_stack.rdf.spark.graph.GraphOps.toDS
Convert a graph into a RDD of Triple.
Convert a graph into a RDD of Triple.
a RDD of triples.
net.sansa_stack.rdf.spark.graph.GraphOps.toRDD
Return the union of this graph and another one.
Return the union of this graph and another one.
of the other graph
graph (union of all)
net.sansa_stack.rdf.spark.graph.GraphOps.union
Adds methods,
astTriple
,find
,size
to Node that allows to different operations to it.