Skip to content

Instantly share code, notes, and snippets.

@mizvol
Created April 21, 2017 10:57
Show Gist options
  • Save mizvol/c0a1a17970fb3e568350a2a9390d2512 to your computer and use it in GitHub Desktop.
Save mizvol/c0a1a17970fb3e568350a2a9390d2512 to your computer and use it in GitHub Desktop.
from graphframes import *
vertices = sqlContext.createDataFrame(userIds, ["id"])
edges = sqlContext.createDataFrame(edgesList, ["src", "dst", "relationship"])
g = GraphFrame(vertices, edges)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment