Learn R Programming

gMCP (version 0.8-17)

gMCPReport: Automatic Generation of gMCP Reports

Description

Creates a LaTeX file with a gMCP Report.

Usage

gMCPReport(object, file = "", ...)

Value

None (invisible NULL).

Arguments

object

A graph of class graphMCP or an object of class gMCPResult.

file

A connection, or a character string naming the file to print to. If "" (the default), the report 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].

...

Arguments to be passed to method graph2latex like package and scale.

Author

Kornelius Rohmeyer rohmeyer@small-projects.de

Details

This function uses cat and graph2latex.

References

The TikZ and PGF Packages Manual for version 2.00, Till Tantau, https://www.ctan.org/pkg/pgf/

See Also

cat graph2latex

Examples

Run this code

g <- BretzEtAl2011()

result <- gMCP(g, pvalues=c(0.1, 0.008, 0.005, 0.15, 0.04, 0.006))

gMCPReport(result)

Run the code above in your browser using DataLab