Learn R Programming

concorR (version 0.2.1)

plot_reduced: Plot a reduced network

Description

Plot a reduced network using igraph, with nodes colored by block number.

Usage

plot_reduced(iobject)

Arguments

iobject

An igraph object representing the reduced network.

Value

Returns NULL, invisibly.

Details

Plots the reduced network, where each node represents all the nodes assigned to that position by CONCOR. Node colors on the reduced network plot are assigned by position, so if CONCOR is also used for vertex color on a sociogram (as in plot_socio), the node colors will align between the plots.

See Also

make_reduced, make_reduced_igraph, plot_socio

Examples

Run this code
# NOT RUN {
library(igraph)
g1 <- matrix(c(0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0), ncol = 4)
rownames(g1) <- c("a", "b", "c", "d")
colnames(g1) <- c("a", "b", "c", "d")

r_mat <- make_reduced(list(g1), nsplit = 1)
r_igraph <- make_reduced_igraph(r_mat$reduced_mat[[1]])

plot_reduced(r_igraph)
# }

Run the code above in your browser using DataLab