do_full_label: Get full Labeling of Galois Lattice

Description Usage Arguments Value See Also Examples

View source: R/FullLabelling.R

Description

Adds to the resulting label of Galois lattice, the full label of all nodes

Usage

1
do_full_label(GaloisGraph, OriginalGraph)

Arguments

GaloisGraph

the Galois Graph from do_galois_lattice

OriginalGraph

the original two-mode graph used for the galois lattice

Value

igraph object, a Galois Lattice with Full Label

See Also

do_reduced_label for reduced label galois lattice and galois_layout for correct hierarchical plots

Examples

1
2
3
4
5
6
7
8
M=matrix(c(1,1,1,0,0,0,
0,0,0,1,1,1,
1,0,0,1,0,0,
1,1,0,1,0,1),nrow=6)
colnames(M) <- c("A", "B", "C", "D")
rownames(M) <- as.character(1:6)
Galois <- do_galois_lattice(M, label = "partly")
Galois <- do_full_label(Galois, M)

Siliegia/galoislattice documentation built on Jan. 30, 2020, 8:16 p.m.