Hello,
I have been using flowType to analyse 15 parameter flow cytometry data but I am having difficulty verifying that I am doing things correctly. I would like to take specific phenotypes from the results of the flowType() and plot them so that I can better visualise the cells that make up the phenotype (I need to create plots that the boss will understand).
For example...Using the DLBCExample data in the vignette at code chunk 4. Is it possible to take a specific phenotype and plot only select parameters? ie. extract the data points that make up the "CD3+CD5-CD19+" phenotype and make each plot separately (FL1.LOG v FL2.LOG etc.). The reason I want to do this is that I have 15 parameters so the result of code chunk 4 on my own data is confusing to interpret and takes a long time to run.
Thanks
###################################################
### code chunk number 1: loadlibs
###################################################
library(flowType)
data(DLBCLExample)
###################################################
### code chunk number 2: PropMarkers
###################################################
PropMarkers <- 3:5
MFIMarkers <- PropMarkers
MarkerNames <- c('FS', 'SS','CD3','CD5','CD19')
Res <- flowType(DLBCLExample, PropMarkers, MFIMarkers, 'kmeans', MarkerNames);
###################################################
### code chunk number 3: SingleDPartitions
###################################################
plot(Res, DLBCLExample);
###################################################
### code chunk number 4: PlotPop
###################################################
plot(Res, "CD3+CD5-CD19+", Frame=DLBCLExample);