init_graph: Initialising a random graph

init_graphR Documentation

Initialising a random graph

Description

init_graph takes number of nodes (n) and average degree (deg) to generate a random graph.

Usage

init_graph(n, deg)

## S4 method for signature 'numeric,numeric'
init_graph(n, deg)

Arguments

n

Number of nodes in the network

deg

Average degree in the network

Value

Returns an unweighted (binary) adjacency matrix, where each cell represents the presence (1) or absence (0) of an interaction between the row and the column individual.

Examples

init_graph(n = 10, deg = 4)

complexNet documentation built on Nov. 10, 2022, 6:10 p.m.