Learn R Programming

multiplex (version 3.4)

comps: Find Components in Multiple Networks

Description

Function to find different components in the multiple network including isolates

Usage

comps(x, bonds = c("entire", "strong", "weak"))

Value

A list with two possible ``components''

com

a component

isol

the isolates

Arguments

x

array representing the network

bonds

the type of bonds to be used in the creation of the relational system for the different components

Author

Antonio Rivero Ostoic

Details

The network's different components are obtained through the transitive closure of the bundle ties. By default, the ``entire'' system is chosen, but the option bonds allow discriminating different types of relational bundles for the components.

See Also

bundles, rel.sys

Examples

Run this code
## Create the data: two binary relations among three elements
arr <- round( replace( array( runif(18), c(3 ,3, 2) ), array( runif(18),
       c(3, 3, 2) ) > .9, 3 ) )

## Find components ans isolates
comps(arr)

Run the code above in your browser using DataLab