plot.bootmnem: Plot bootstrap mnem result.

Description Usage Arguments Value Author(s) Examples

View source: R/mnems.r

Description

Plot bootstrap mnem result.

Usage

1
2
## S3 method for class 'bootmnem'
plot(x, reduce = TRUE, ...)

Arguments

x

bootmnem object

reduce

if TRUE transitively reduces the graphs

...

additional parameters for the plotting function plotDNF

Value

visualization of bootstrap mnem result with Rgraphviz

Author(s)

Martin Pirkl

Examples

1
2
3
4
5
6
sim <- simData(Sgenes = 3, Egenes = 2, Nems = 2, mw = c(0.4,0.6))
data <- (sim$data - 0.5)/0.5
data <- data + rnorm(length(data), 0, 1)
result <- mnem(data, k = 2, starts = 1)
boot <- bootstrap(result, size = 2)
plot(boot)

mnem documentation built on Nov. 18, 2020, 2 a.m.