Description Usage Arguments Value Examples
Plot a Phytoplankton Cytogram
1 |
df |
a dataframe of events (rows) and channels (columns). |
x.ax |
column to plot in the x.axis |
y.ax |
column to plot in the y.axis |
add.legend |
should the plot automatically generate a legend |
pop.def |
A population (rows) definition dataframe with parameters (columns) for gating and clustersing. |
transform |
plot Log transform data, if appropriate |
cex |
character expansion for the points. Undefined background points are 1/3rd of the foreground points. |
pch |
point character |
xlab |
label for the x axis. by default equals x.ax |
ylab |
label for the y axis. by default equals y.ax |
... |
other paramters passed to plot |
a cytogram plot
1 2 3 4 5 6 7 8 9 10 11 | opp.file.path <- system.file("extdata","seaflow_cruise","2011_001", "1.evt.opp",
package="flowPhyto")
pop.file.path <- system.file("extdata","seaflow_cruise","pop.def.tab",
package="flowPhyto")
opp <- readSeaflow(opp.file.path)
def <- readPopDef(pop.file.path)
pop <- classify(x=opp, pop.def= def)
# Visualize the result of Classify using the function plotCytogram()
plotCytogram(pop, "fsc_small","chl_small", pop.def= def)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.