Learn R Programming

comato (version 1.1)

analyze.graph.measures.conceptmap: Analyzing graph measures of a concept map

Description

analyze.graph.measures analyzes several basic graph measures of a given graph in form of a conceptmap object. All measures are derived by the appropriate functions of igraph.

Usage

# S3 method for conceptmap
analyze.graph.measures(x)

Arguments

x

A conceptmap 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

Run this code
# NOT RUN {
require("igraph")
g1 = set.vertex.attribute(erdos.renyi.game(15, 0.7, type="gnp"), "name", value=1:15)
analyze.graph.measures(conceptmap(g1))
# }

Run the code above in your browser using DataLab