Learn R Programming

gMCP (version 0.8-5)

graph2latex: Graph2LaTeX

Description

Creates LaTeX code that represents the given graph.

Usage

graph2latex(graph, package="TikZ", scale=1, alpha=0.05, pvalues,
	fontsize=c("tiny","scriptsize", "footnotesize", "small",
		"normalsize", "large", "Large", "LARGE", "huge", "Huge"), 
		nodeTikZ, labelTikZ="near start,above,fill=blue!20",
		tikzEnv=TRUE, offset=c(0,0),
    fill=list(reject="red!80",retain="green!80"), nodeR = 25)

Arguments

graph
A graph of class graphMCP.
package
A character string specifying the LaTeX package that should be used. Up to now only TikZ is available.
scale
A numeric scalar specifying a possible scaling of the graph. Note that this does not effect the fontsize of the graph. (Coordinates are interpreted in big points - 72 bp = 1 inch).
alpha
An optional numeric argument to specify the type I error rate.
pvalues
If the optional numeric argument pvalues is given, nodes that can be rejected, will be marked.
fontsize
An optional character vector specifying the fontsize for the graph, must be one of "tiny", "scriptsize", "footnotesize", "small", "normalsize", "large", "Large"
nodeTikZ
A character string with additional arguments for the TikZ node command like for example nodeTikZ="minimum size=2cm".
labelTikZ
A character string with arguments for the TikZ node command within an edge.
tikzEnv
Logical whether the LaTeX code should be wrapped in a TikZ environment.
offset
A numeric of length 2 specifying the x and y offset in the TikZ environment.
fill
A list containing 2 elements reject and retain specifying node fill colour of rejected and retained (or not yet rejected) nodes.
nodeR
Radius of nodes (pixel in Java, bp in LaTeX).

Value

  • A character string that contains LaTeX code representing the given graph.

Details

For details see the given references.

References

The TikZ and PGF Packages Manual for version 2.00, Till Tantau, http://www.ctan.org/tex-archive/graphics/pgf/base/doc/generic/pgf/pgfmanual.pdf

See Also

graphMCP, gMCPReport

Examples

Run this code
g <- BonferroniHolm(5)

graph2latex(g)

Run the code above in your browser using DataLab