Learn R Programming

multiplex (version 3.7)

diagram.levels: Levels in Lattice Diagram

Description

A function that reads the different levels in the lattice diagram of the partial order structure among actors and ties in the network

Usage

diagram.levels(x, perm = FALSE)

Value

A named list with components of the “levels” in the concept diagram produced by diagram.

If the permutation is specified in perm, a data frame with the elements of the partial order structure with the column names indicating the element class plus a vector with the levels and a matrix with the permuted structure are given as well.

Arguments

x

A matrix representing the partial order

perm

(optional) whether or not to return the permuted structure

Author

Antonio Rivero Ostoic

Details

When it comes to reduce the structure of a multiple network, many times the partial order structure provides different classes of elements depending in the inclusions these elements have. In this sense, the illustration given by the diagram function provides us typically with different levels of the ordered relations, which are read by this routine.

See Also

partial.order, diagram, perm

Examples

Run this code
# load the data
data("incubA")

# given e.g. a partial order table in the object 'po'
po <- as.strings(incubA$IM) |> 
  partial.order()

# find the levels in the lattice diagram
if (FALSE) {
diagram.levels(po)
}

Run the code above in your browser using DataLab