from.edgelist function

Edgelist to fastnet

Edgelist to fastnet

Transform an edgelist to an ego-centric list form used in fastnet.

from.edgelist(edgelist)

Arguments

  • edgelist: A 2-column data frame, in which the 1st column represents the start nodes, and the 2nd column represents the destination nodes.

Returns

A list containing the nodes of the network and their respective neighbors.

Details

Most network data repositories choose to store the data in an edgelist form. This function helps user to load it in fastnet.

Examples

edgelist <- data.frame(from=c(1, 3, 2, 3, 3), to=c(4, 5, 6, 5, 7)) g <- from.edgelist(edgelist)

Author(s)

Xu Dong

  • Maintainer: Nazrul Shaikh
  • License: GPL (>= 2)
  • Last published: 2020-12-01

Useful links