type.multiplex: Extraction of the relationship types' vector of the selected...

Description Usage Arguments Value See Also Examples

Description

The function allows a user-friendly method for extracting the vector of relationship types for the selected layers of the multiplex network.

Usage

1
  type.multiplex(obj, index = 1:length(obj$type))

Arguments

obj

An object of class multiplex.

index

A vector of the layers' IDs selected for the extraction of their relative relationship type string. By default, the vector contains the IDs of all the layers of the network.

Value

A vector with the layers' relationship type strings selected by the index argument.

See Also

create.multiplex

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Loading Aarhus CS Department dataset.

data(aarhus_mplex)

# Creating the multiplex object using the dataset loaded into aarhus_mplex object.

mplexObj <- create.multiplex(nodes = aarhus_mplex$nodes,
                            layersNames = aarhus_mplex$layerNames,
                            layer1 = aarhus_mplex$L1,
                            type1 = "undirected",
                            aarhus_mplex$L2,
                            aarhus_mplex$L3,
                            aarhus_mplex$L4,
                            aarhus_mplex$L5
                            )

# Extracting the type of relationships of the layers:

type.multiplex(mplexObj)

# or for some of them:

type.multiplex(mplexObj, index = c("leisure", "facebook"))

Achab94/mplex documentation built on May 5, 2019, 11:46 a.m.