Graphx
Basic components of Graph computing:
Vetex, Edge and Triplet

Vertex is a 2 element tuple: (vertex id, attribute)
Edge is a case class, or structure (like a struct in C): Edge(source vertex id, destination vertex id, Edge attribute)
Triplet is a 3 element nested tuple (tuple in tuple): (source Vertex, destination Vertex, Edge attribute)
Graphx contains the classes and others in below packages:
Last updated