graphAnalysis {gMCP}R Documentation

Analysis of a gMCP-Graph

Description

Creates LaTeX code that represents the given graph.

Usage

graphAnalysis(graph, file = "")

Arguments

graph

A graph of class graphMCP.

file

A connection, or a character string naming the file to print to. If "" (the default), the analysis is printed to the standard output connection (the console unless redirected by sink). If it is "|cmd", the output is piped to the command given by cmd, by opening a pipe connection [taken from the manual page of cat, which is called in this function].

Details

In the moment it is only tested whether each node is accessible from each other node. Further analysis will be added in future versions.

Value

A character string that contains the printed analysis.

Author(s)

Kornelius Rohmeyer rohmeyer@small-projects.de

See Also

graphMCP

Examples



g <- BonferroniHolm(5)

graphAnalysis(g)



[Package gMCP version 0.8-17 Index]