init_graph takes number of nodes (n) and average degree (deg) to generate a random graph.
Usage
init_graph(n, deg)
# S4 method for numeric,numeric
init_graph(n, deg)
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.