centr.strength: Strength centralization of weighted network

Description Usage Arguments Value Examples

View source: R/centr.strength.R

Description

This function calculates the strengh centralization of a weighted network.

Usage

1
centr.strength(edgelist, type = "out", alpha = 0.5)

Arguments

edgelist

The input weighted edge list.

type

Option that indicating whether out- or in-measures to be calculated. The default is "out". The setting is irrelevant for undirected networks, but it must be specified.

alpha

Default is 0.5.

Value

Strength centralization of the specified network.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
edg <- rbind(c(1,2,4),
c(1,3,2),
c(1,5,3),
c(2,1,4),
c(2,3,4),
c(2,4,1),
c(2,5,2),
c(2,6,1),
c(3,1,2),
c(3,2,4),
c(3,5,3),
c(4,2,1),
c(4,5,2),
c(5,2,2),
c(5,6,1),
c(6,5,1))
centr.strength(edg)

hangxiong/wNetwork documentation built on May 17, 2019, 2:28 p.m.