proBin(m, minEvents=500,channels=NULL)
flowFrame
minEvents
The minimum number of events in
each bin. (i.e. the termination criterion for the probability
binning algorithm)data.frame
that stores information regarding
each node of the tree generated during each stage of the probability
binning algorithm. Each row in the table represents a node, the
first row representing the original flowFrame
matrix.The dataIndx column provides indexes for retrieving the matrices
during each stage of the binning process from the enviroment
data
.The parent field indicates the row number in the table that holds
the parent information for the corresponding node.The left and right columns indicates the row numbers in the table
that stores information regarding the children of that particular
node. The leaf nodes that hold the binned data can be identified by
the nodes with the left of right values of zero( ie. no children
nodes)The visited column is used internally by the algorithm to check if a
particular node has been visited during the computation process.data.frame
containing two columns splitCol
- indicates the column number of the flowFrame
, the split
was performed.splitMed - The median value which was used as the threshold for
splitting the flowFrame
The splitCol and splitMed parameters are utilized by the plotBins
and shadeBins functions in visualizing the differences between
control and test sample cases. The flowSet
is first filtered using a rectangleGate
and
the norm2Filter
is subsequently fitted to the remaining subset.
plotBins
, binByRef
data(GvHD)
res<-proBin(GvHD[[1]],200,channels=c("FSC-H","SSC-H","FL1-H","FL4-H"))
Run the code above in your browser using DataLab