plot.epiNEM {epiNEM} | R Documentation |
Plots the winning pathway structure
## S3 method for class 'epiNEM' plot(x, ...)
x |
object of class epiNEM |
... |
other arguments |
plot of the logical network
data <- matrix(sample(c(0,1), 100*4, replace = TRUE), 100, 4) colnames(data) <- c("A", "A.B", "B", "C") rownames(data) <- paste("E", 1:100, sep = "_") res <- epiNEM(data, method = "exhaustive") plot(res)