Constructs GraphX graph from RDD of triples
Constructs GraphX graph from RDD of triples
rdd of triples
object of GraphX which contains the constructed graph.
Constructs Hashed GraphX graph from RDD of triples
Constructs Hashed GraphX graph from RDD of triples
rdd of triples
object of GraphX which contains the constructed hashed graph.
Constructs String GraphX graph from RDD of triples
Constructs String GraphX graph from RDD of triples
rdd of triples
object of GraphX which contains the constructed string graph.
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 RDF graph
the other RDF graph
the difference of both RDF graphs
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 .
one instance of the given graph
a partial funtion.
Node] a subset of the given graph.
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 .
one instance of the given graph
a partial funtion.
Node] a subset of the given graph.
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 .
one instance of the given graph
a partial funtion.
Node] a subset of the given graph.
Finds triplets of a given graph.
Finds triplets of a given graph.
one instance of the given graph
graph which contains subset of the reduced graph.
Get objects from a given graph.
Get objects from a given graph.
one instance of the given graph
RDD[Node] which contains list of the objects.
Get predicates from a given graph.
Get predicates from a given graph.
one instance of the given graph
RDD[Node] which contains list of the predicates.
Get subjects from a given graph.
Get subjects from a given graph.
one instance of the given graph
RDD[Node] which contains list of the subjects.
Get triples of a given graph.
Get triples of a given graph.
one instance of the given graph
RDD[Triple] which contains list of the graph 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.
the RDF graph
the other RDF graph
the intersection of both RDF graphs
Computes shortest paths to the given set of landmark vertices.
Computes shortest paths to the given set of landmark vertices.
the edge attribute type (not used in the computation)
the graph for which to compute the shortest paths
the list of landmark vertex ids. Shortest paths will be computed to each landmark.
a graph where each vertex attribute is a map containing the shortest-path distance to each reachable landmark vertex.
Compute the size of the graph
Compute the size of the graph
the number of edges in the graph.
Convert a graph into a DataFrame.
Convert a graph into a DataFrame.
GraphX graph of triples.
a DataFrame of triples.
Convert a graph into a Dataset of Triple.
Convert a graph into a Dataset of Triple.
GraphX graph of triples.
a Dataset of triples.
Convert a graph into a RDD of Triple.
Convert a graph into a RDD of Triple.
GraphX graph of triples.
a RDD of triples.
Return the union of this graph and another one.
Return the union of this graph and another one.
of the graph
of the other graph
graph (union of all)
Spark/GraphX based implementation of RDD[Triple].