plotMyMatrix {sbm}R Documentation

Plot an adjacency or incidence Matrix

Description

Plot an adjacency or incidence Matrix

Usage

plotMyMatrix(
  Mat,
  dimLabels = c(row = "row", col = "col"),
  clustering = NULL,
  plotOptions = NULL
)

Arguments

Mat

: a matrix representing the network

dimLabels

: a vector of length 1 or 2 specifying the types of nodes in row and col (functional group) (Default is NULL)

clustering

: a list of length 2 specifying a clustering on row and col

plotOptions

: a list providing options. See details below.

Details

The list of parameters plotOptions for the matrix plot is

Value

a ggplot object corresponding to the plot

Examples

M <- matrix(sample(c(0,1),900,replace=TRUE),30,30)
plotMyMatrix(M, dimLabels = c('individulals'), plotOptions= list(legend = FALSE))
M2 <- matrix( rpois(800,10),40,20)
plotMyMatrix(M2, dimLabels = c(row = 'reader',col = 'book'), plotOptions = list(legend = TRUE))


[Package sbm version 0.4.6 Index]