graphframes (version 0.1.2)

gf_scc: Strongly connected components

Description

Compute the strongly connected component (SCC) of each vertex and return a DataFrame with each vertex assigned to the SCC containing that vertex.

Usage

gf_scc(x, max_iter, ...)

Arguments

x

An object coercable to a GraphFrame (typically, a gf_graphframe).

max_iter

Maximum number of iterations.

...

Optional arguments, currently not used.

Examples

Run this code
# NOT RUN {
g <- gf_friends(sc)
gf_scc(g, max_iter = 10)
# }

Run the code above in your browser using DataLab