Learn R Programming

gMCP (version 0.8-5)

matrix2graph: Matrix2Graph and Graph2Matrix

Description

Creates a graph of class graphMCP from a given adjacency matrix or vice versa.

Usage

matrix2graph(m, weights=rep(1/dim(m)[1],dim(m)[1])) 
	graph2matrix(graph)

Arguments

m
An adjacency matrix.
weights
A numeric for the initial weights.
graph
A graph of class graphMCP.

Value

  • A graph of class graphMCP with the given adjacency matrix for matrix2graph. The adjacency matrix of a graphMCP graph for graph2matrix.

Details

The hypotheses names are the row names or if these are NULL, the column names or if these are also NULL of type H1, H2, H3, ... If the diagonal of the matrix is unequal zero, the values are ignored and a warning is given.

Examples

Run this code
# Bonferroni-Holm:
m <- matrix(rep(1/3, 16), nrow=4)
diag(m) <- c(0, 0, 0, 0)
graph <- matrix2graph(m)
print(graph)
graph2matrix(graph)

Run the code above in your browser using DataLab