Edgelist to fastnet
fastnet
Transform an edgelist to an ego-centric list form used in fastnet
.
from.edgelist(edgelist)
edgelist
: A 2-column data frame, in which the 1st column represents the start nodes, and the 2nd column represents the destination nodes.A list containing the nodes of the network and their respective neighbors.
Most network data repositories choose to store the data in an edgelist form. This function helps user to load it in fastnet
.
edgelist <- data.frame(from=c(1, 3, 2, 3, 3), to=c(4, 5, 6, 5, 7)) g <- from.edgelist(edgelist)
Xu Dong
Useful links