strength.dist: Plot strength distribution of a network

Description Usage Arguments Value Examples

View source: R/strength.dist.R

Description

This function plots the strength distribution of a network in the form of edge list.

Usage

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

Arguments

edgelist

The input edge list.

type

Option 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.

by

number: increment of the sequence

alpha

Default is 0.5.

Value

Return probability density of the strengths of the specified network.

Examples

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

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