graphlets.project {igraph} | R Documentation |
Graphlet decomposition of a graph
Description
graphlets.project()
was renamed to graphlet_proj()
to create a more
consistent API.
Usage
graphlets.project(
graph,
weights = NULL,
cliques,
niter = 1000,
Mu = rep(1, length(cliques))
)
Arguments
graph |
The input graph, edge directions are ignored. Only simple graph (i.e. graphs without self-loops and multiple edges) are supported. |
weights |
Edge weights. If the graph has a |
cliques |
A list of vertex ids, the graphlet basis to use for the projection. |
niter |
Integer scalar, the number of iterations to perform. |
Mu |
Starting weights for the projection. |
[Package igraph version 2.0.3 Index]