Learn R Programming

gMCP (version 0.8-17)

graphAnalysis: Analysis of a gMCP-Graph

Description

Creates LaTeX code that represents the given graph.

Usage

graphAnalysis(graph, file = "")

Value

A character string that contains the printed analysis.

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].

Author

Kornelius Rohmeyer rohmeyer@small-projects.de

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.

See Also

graphMCP

Examples

Run this code


g <- BonferroniHolm(5)

graphAnalysis(g)


Run the code above in your browser using DataLab