as.igraph {igraph}R Documentation

Conversion to igraph

Description

These fucntions convert various objects to igraph graphs.

Usage

## S3 method for class 'igraphHRG'
as.igraph(x, ...)

Arguments

x

The object to convert.

...

Additional arguments. None currently.

Details

You can use as.igraph to convert various objects to igraph graphs. Right now the following objects are supported:

Value

All these functions return an igraph graph.

Author(s)

Gabor Csardi csardi.gabor@gmail.com.

Examples

g <- graph.full(5) + graph.full(5)
hrg <- hrg.fit(g)
as.igraph(hrg)

[Package igraph version 0.7.0 Index]