plot.MLP: Plot the Results of an MLP Run

Description Usage Arguments Value Examples

View source: R/plot.MLP.R

Description

Plot the Results of an MLP Run

Usage

1
2
3
## S3 method for class 'MLP'
plot(x, y = NULL, type = c("barplot", "GOgraph",
  "quantileCurves"), ...)

Arguments

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

Value

for type = "barplot", the midpoints of the barplot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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")
}

Example output

Loading required package: AnnotationDbi
Loading required package: stats4
Loading required package: BiocGenerics
Loading required package: parallel

Attaching package:BiocGenericsThe following objects are masked frompackage:parallel:

    clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
    clusterExport, clusterMap, parApply, parCapply, parLapply,
    parLapplyLB, parRapply, parSapply, parSapplyLB

The following objects are masked frompackage:stats:

    IQR, mad, sd, var, xtabs

The following objects are masked frompackage:base:

    anyDuplicated, append, as.data.frame, basename, cbind, colnames,
    dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
    grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
    order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
    rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
    union, unique, unsplit, which.max, which.min

Loading required package: Biobase
Welcome to Bioconductor

    Vignettes contain introductory material; view with
    'browseVignettes()'. To cite Bioconductor, see
    'citation("Biobase")', and for packages 'citation("pkgname")'.

Loading required package: IRanges
Loading required package: S4Vectors

Attaching package:S4VectorsThe following object is masked frompackage:base:

    expand.grid

Loading required package: affy
Loading required package: plotrix
Loading required package: gplots

Attaching package:gplotsThe following object is masked frompackage:plotrix:

    plotCI

The following object is masked frompackage:IRanges:

    space

The following object is masked frompackage:S4Vectors:

    space

The following object is masked frompackage:stats:

    lowess

Loading required package: gmodels
Registered S3 method overwritten by 'gdata':
  method         from  
  reorder.factor gplots
Loading required package: gdata
sh: 1: /usr/bin/perl: Permission denied
gdata: Unable to load perl libaries needed by read.xls()
gdata: to support 'XLX' (Excel 97-2004) files.

gdata: Unable to load perl libaries needed by read.xls()
gdata: to support 'XLSX' (Excel 2007+) files.

gdata: Run the function 'installXLSXsupport()'
gdata: to automatically download and install the perl
gdata: libaries needed to support Excel XLS and XLSX formats.

Attaching package:gdataThe following object is masked frompackage:gplots:

    reorder.factor

The following object is masked frompackage:IRanges:

    trim

The following objects are masked frompackage:S4Vectors:

    first, first<-

The following object is masked frompackage:Biobase:

    combine

The following object is masked frompackage:BiocGenerics:

    combine

The following object is masked frompackage:stats4:

    nobs

The following object is masked frompackage:stats:

    nobs

The following object is masked frompackage:utils:

    object.size

The following object is masked frompackage:base:

    startsWith

Loading required package: gtools
Warning message:
In system(cmd, intern = TRUE) :
  running command ''/usr/bin/perl' '/usr/lib/R/site-library/gdata/perl/supportedFormats.pl'' had status 126
Loading required package: GO.db

Loading required package: Rgraphviz
Loading required package: graph
Loading required package: grid

Attaching package:RgraphvizThe following objects are masked frompackage:IRanges:

    from, to

The following objects are masked frompackage:S4Vectors:

    from, to

Loading required package: GOstats
Loading required package: Category
Loading required package: Matrix

Attaching package:MatrixThe following object is masked frompackage:S4Vectors:

    expand


Attaching package:GOstatsThe following object is masked frompackage:AnnotationDbi:

    makeGOGraph

Loading required package: annotate
Loading required package: XML

Attaching package:XMLThe following object is masked frompackage:graph:

    addNode


Attaching package:annotateThe following object is masked frompackage:Rgraphviz:

    toFile

MLP documentation built on Nov. 8, 2020, 8:23 p.m.

Related to plot.MLP in MLP...