summary.graph: Provide a summary table with network attributes

Description Usage Arguments Examples

Description

This funtion provides a table contaning various network attributes

Usage

1
2
## S3 method for class 'graph'
summary(graph.object)

Arguments

graph.object

is a graph object that is used for plotting in an igraph

node:

total number of nodes in the given graph object

edge:

total number of links in the given graph object

nodeDegree:

node degree

avgpath:

average path length

trans:

transitivity

mod:

modularity, detected based on walktrap.community algorithm

connectance:

connectance

wtc:

number of modules based on walktrap.community algorithm

nModules.SA:

number of modules based on SA algorithm implemented under rnercarto package

top3hub:

top3 hub node

top3hubv:

top3 hub node value

n_postiveL:

number of positive links

n_negativeL:

number of negative links

Examples

1
2
g <- erdos.renyi.game(100, 1/1000)
analyse_graph <- summary.graph(g)

ravinpoudel/myFunctions documentation built on May 9, 2020, 7:39 a.m.