Usage
## S3 method for class 'formula,flowSet':
levelplot(x, data, xlab, ylab, as.table = TRUE,
contour = TRUE, labels = FALSE, n = 50, ...)## S3 method for class 'formula,flowSet':
qqmath(x, data, xlab, ylab, f.value = function(n)
ppoints(ceiling(sqrt(n))), distribution = qnorm, ...)
## S3 method for class 'flowFrame,missing':
parallel(x, data, reorder.by = function(x)
var(x, na.rm = TRUE), time = "Time", exclude.time = TRUE, ...)
## S3 method for class 'formula,flowSet':
parallel(x, data, time = "Time",
exclude.time = TRUE, filter = NULL, xlab = NULL, ylab = NULL, ...)
Arguments
x
a formula describing the structure of the plot and the variables to
be used in the display.
data
a flowSet
object that serves as a source of data.
xlab,ylab
Labels for data axes, with suitable defaults taken from the
formula
as.table,contour,labels
These arguments are passed unchanged to the
corresponding methods in lattice, and are listed here only because they
provide different defaults. See documentation for the original methods for
details.
n
the number of bins on each axis to be used when evaluating the
density
f.value,distribution
number of points used in Q-Q plot, and the
reference distribution used. See qqmath
for
details. reorder.by
a function, which is applied to each column. The columns
are ordered by the results. Reordering can be suppressed by setting this to
NULL
.
time
A character string giving the name of the column recording time.
exclude.time
logical, specifying whether to exclude the time variable
from a scatter plot matrix or parallel coordinates plot. It is rarely
meaningful not to do so.
...
more arguments, usually passed on to the underlying lattice
methods.