plot,fcFilterList,ANY-method {openCyto} | R Documentation |
fcFilterList
It is usually called by plot
method for fcTree
instead of directly by users.
## S4 method for signature 'fcFilterList,ANY' plot(x, y, samples = NULL, posteriors = FALSE, xlim = NULL, ylim = NULL, node = NULL, data = NULL, breaks = 20, lwd = 1, ...)
x |
|
y |
|
samples |
|
posteriors |
|
xlim, ylim |
scale settings for x,y axises |
node |
|
data |
|
breaks |
passed to hist |
lwd |
line width |
... |
other arguments passed to base |
## Not run: env1<-new.env(parent=emptyenv()) #gt is a gatingTemplate, gs is a GatingSet gating(gt,gs,env1) #the flowClust gating results are stored in env1 plot(env1$fct,"nonDebris",post=T) #plot the priors as well as posteriors for the "nonDebris" gate ## End(Not run)