| plot.MLP {MLP} | R Documentation |
Plot the Results of an MLP Run
## S3 method for class 'MLP'
plot(x, y = NULL, type = c("barplot", "GOgraph",
"quantileCurves"), ...)
x |
object of class 'MLP' |
y |
argument added to comply with generic; not used, defaults to NULL |
type |
character of length one; one of 'barplot', 'GOgraph' or 'quantileCurves' |
... |
further arguments for the plot functions for each type |
for type = "barplot", the midpoints of the barplot
pathExampleMLPResult <- system.file("exampleFiles", "exampleMLPResult.rda", package = "MLP")
load(pathExampleMLPResult)
dev.new(width = 10, height = 10)
op <- par(mar = c(30, 10, 6, 2))
plot(exampleMLPResult, type = "barplot")
par(op)
plot(exampleMLPResult, type = "quantileCurves")
if (require(GO.db) && require(Rgraphviz)){
plot(exampleMLPResult, type = "GOgraph")
}