Learn R Programming

PAFit (version 1.2.10)

from_igraph: Convert an igraph object to a PAFit_net object

Description

This function converts an igraph object (of package igraph) to a PAFit_net object.

Usage

from_igraph(net)

Value

The function returns a PAFit_net object.

Arguments

net

An object of class igraph.

Author

Thong Pham thongphamthe@gmail.com

Examples

Run this code
  library("PAFit")
  # a network from Bianconi-Barabasi model
  net          <- generate_BB(N = 50 , m = 10 , s = 10)
  igraph_graph <- to_igraph(net)
  back         <- from_igraph(igraph_graph)

Run the code above in your browser using DataLab