Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Social Network Analysis using Spark MLLIB

avatar
Rising Star

Hi, Anyone already do (or read) any social network analysis using Spark Mllib with Python? I need to do a research with Spark to see the relationships between the people in a organization. Many thanks!

1 ACCEPTED SOLUTION

avatar

Spark has a GraphX component library (soon to be upgraded to GraphFrames) which can be used to model graph type relationships. These relationships are modeled by combining a vertex table (vertices) with an edge table (edges). Read here for more info:

http://spark.apache.org/docs/latest/graphx-programming-guide.html#example-property-graph

View solution in original post

1 REPLY 1

avatar

Spark has a GraphX component library (soon to be upgraded to GraphFrames) which can be used to model graph type relationships. These relationships are modeled by combining a vertex table (vertices) with an edge table (edges). Read here for more info:

http://spark.apache.org/docs/latest/graphx-programming-guide.html#example-property-graph