tnet_igraph: Exports a tnet network to an igraph object

Description Usage Arguments Value Note Author(s) References Examples

Description

The tnet_igraph function creates an igraph object from a tnet network.

Usage

1
tnet_igraph(net,type=NULL, directed=NULL)

Arguments

net

A tnet network

type

type of tnet network, see as.tnet.

directed

if a one-mode networks, this can be set to avoid testing whether the network is directed.

Value

Returns the igraph object.

Note

version 1.0.0

Author(s)

Tore Opsahl; http://toreopsahl.com

References

http://toreopsahl.com/

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## Load sample data
sample <- rbind(
c(1,2,4),
c(1,3,2),
c(2,1,4),
c(2,3,4),
c(2,4,1),
c(2,5,2),
c(3,1,2),
c(3,2,4),
c(4,2,1),
c(5,2,2),
c(5,6,1),
c(6,5,1))

## Run the programme
tnet_igraph(sample, type="weighted one-mode tnet")

tnet documentation built on Feb. 25, 2020, 1:07 a.m.