Usage
plotAverage(plotset, keepratio = FALSE, labels = NULL, xlim = NULL,
ylim = NULL, main = NULL, xlab = "", ylab = "",
plotScale = "linear", type = "full", error.estimates = TRUE,
legend = TRUE, legend_ext = FALSE, legend_pos = "topright",
legend_ext_pos = "topleft", cex.axis = 14, cex.lab = 16,
cex.main = 20, cex.legend = 10, ln.v = TRUE, ln.h = NULL,
colvec = NULL, pointsize = 12, ...)## S3 method for class 'list':
plotAverage(plotset, keepratio = FALSE, labels = NULL,
xlim = NULL, ylim = NULL, main = NULL, xlab = "", ylab = "",
plotScale = "linear", type = "full", error.estimates = TRUE,
legend = TRUE, legend_ext = FALSE, legend_pos = "topright",
legend_ext_pos = "topleft", cex.axis = 14, cex.lab = 16,
cex.main = 20, cex.legend = 10, ln.v = TRUE, ln.h = NULL,
colvec = NULL, pointsize = 12, ...)
## S3 method for class 'PlotSetPair':
plotAverage(plotset, keepratio = FALSE,
labels = NULL, xlim = NULL, ylim = NULL, main = NULL, xlab = "",
ylab = "", plotScale = "linear", type = "full",
error.estimates = TRUE, legend = TRUE, legend_ext = FALSE,
legend_pos = "topright", legend_ext_pos = "topleft", cex.axis = 14,
cex.lab = 16, cex.main = 20, cex.legend = 10, ln.v = TRUE,
ln.h = NULL, colvec = NULL, pointsize = 12, ...)
## S3 method for class 'PlotSetList':
plotAverage(plotset, keepratio = FALSE,
labels = NULL, xlim = NULL, ylim = NULL, main = NULL, xlab = "",
ylab = "", plotScale = "linear", type = "full",
error.estimates = TRUE, legend = TRUE, legend_ext = FALSE,
legend_pos = "topright", legend_ext_pos = "topleft", cex.axis = 14,
cex.lab = 16, cex.main = 20, cex.legend = 10, ln.v = TRUE,
ln.h = NULL, colvec = NULL, pointsize = 12, ...)
## S3 method for class 'PlotSetArray':
plotAverage(plotset, keepratio = FALSE,
labels = NULL, xlim = NULL, ylim = NULL, main = NULL, xlab = "",
ylab = "", plotScale = "linear", type = "full",
error.estimates = TRUE, legend = TRUE, legend_ext = FALSE,
legend_pos = "topright", legend_ext_pos = "topleft", cex.axis = 14,
cex.lab = 16, cex.main = 20, cex.legend = 10, ln.v = TRUE,
ln.h = NULL, colvec = NULL, pointsize = 12, ...)
Arguments
keepratio
If TRUE keep 1:1 aspect ratio of the figure; defaults to
FALSE
labels
The character vector giving labels used in experiment key. The
defaults NULL value indicates taht feature/track file names will be used to
generate the labels.
xlim
the x limits (x1, x2) of the plot. Note that x1 > x2 is allowed
and leads to a "reversed axis". The default value, NULL, indicates that the
whole range present in plotset
will be plotted.
ylim
the y limits (y1, y2) of the plot. Note that x1 > x2 is allowed
and leads to a "reversed axis". The default value, NULL, indicates that the
range will be auto calculated including space for error estimates.
main
The main title of the plot, shown in top-centred part of the
figure; defaults to NULL (not visible)
xlab
Label shown below horizontal axis; default to ""
(empty)
ylab
Label shown below vertical axis; default to ""
(empty)
plotScale
scale the available data before plotting, can be "linear"
(do not scale, default), "log2" or "zscore"
type
If set to "legend" only the legend/key will be plotted.
error.estimates
Indicates if error estimates are plotted, defaults to
TRUE
legend
Indicates if key describing the PlotSetPairs is shown, defaults
to TRUE
legend_ext
Indicates if key describing error estimates is shown,
defaults to FALSE
legend_pos
The position of main key, defaults to 'topright'
legend_ext_pos
The position of error estimates key, defaults to
'topleft'
cex.axis
Axis numbers font size in points, defaults to 14
cex.lab
Axis labels font size in points, Defaults to 16
cex.main
Main title font size in points, defaults to 20
cex.legend
Keys labels font size in points, defaults to 10
ln.v
Determins if vertical guide line(s) should be plotted (TRUE) or
ommitted (FALSE). For anchored plots 2 lines indicating the start and end
of anchored distane are plotted.
ln.h
Determins if horizontal guide line should is plotted. Numeric
value of the parameter indicates the Y-axis position of the lie, NULL
(default) indicates to omit
colvec
The vector of colours used to plot the lines and error estimate
fields. If set value NULL (default) the automatically generated colour
values will be used. Accpeted values are: vector of any of the three kinds
of R colour specifications, i.e., either a colour name (as listed by
colors()), a hexadecimal string of the form "#rrggbb" or "#rrggbbaa" (see
rgb), or a positive integer i meaning palette()[i]. See
col2rgb
. pointsize
The default font point size to be used for plots. Defaults
to 12 (1/72 inch).
...
other graphical parameters passed to plot.default (see
plot.default
, par
and
section "Details" below)