analyze.graph.measures.igraph {comato} | R Documentation |
Analyzing graph measures of an igraph object
Description
analyze.graph.measures.igraph
is a convenience method that can be called directly on the result of landscape
.
It works just like analyze.graph.measures.conceptmap
Usage
## S3 method for class 'igraph'
analyze.graph.measures(x)
Arguments
x |
An igraph object. |
Value
A list with named components that contain the betweenness measure, the edge.connectivity, the diameter, the degree distribution and the communities using the Fastgreedy algorithm.
Examples
require("igraph")
g1 = set.vertex.attribute(erdos.renyi.game(15, 0.7, type="gnp"), "name", value=1:15)
analyze.graph.measures(g1)
[Package comato version 1.1 Index]