Greetings! M.S. in Biology student looking to wrap my head around Flow cytometry data analysis via R.
I have done some messing around and previously got a simple plot of my data and some channels. I set out to isolate some replicates and look at those. Everything seems fine except for my error message during an attempt to plot something that should in fact plot...
Basically I have no idea why R tells me flowViz is not attached when session is showing that it is?
R version 3.1.1 (2014-07-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Did you explicitly `library(flowViz)`?
Also, `plot` is not how you plot a flowSet in `flowViz`. You'll want `xyplot`, and you'll want to specify the channels. Have a look at the package vignette here
http://www.bioconductor.org/packages/release/bioc/vignettes/flowViz/inst/doc/filters.html
It provides plenty of examples. I'd also recommend d looking into the GatingSet infrastructure in flowWorkspace as it greatly simplifies managing and plotting you flow data, and it makes use of all the existing infrastructure in flowViz and flowCore.
Greg
Definitely looking into this. I did explicitly 'library(flowViz)' and plot for some reason worked in another situation. But even then..it should tell me that flowViz is loaded or plot isn't how it's used. Will report back with an edit. Also happy holidays and thank you for your input. Duy
edit: following the instructions i run into something else interesting, when I go to set my flowset as data(Cneg) when I was trying to reproduce these lines from the examples you linked:
data(GvHD)
head(pData(GvHD))
The error message In data(Cneg) : data set ‘Cneg’ not found
xyplot worked when I told it to compare some channels(which is what I needed) So I will continue from there. It just feels like something is inherently wrong with the output of my data from my flow?
subset of replicates:
> Cneg
A flowSet with 3 experiments.
column names:
SS EV FL1 FL2 FL3 TIME
> Cneg[[1]] #summary of each frame with quartiles
flowFrame object 'S3Cneg10minR1_10252014.LMD'
with 13957 cells and 6 observables:
name desc range minRange maxRange
$P1 SS Side Scatter 1024 1.009044 10000
$P2 EV Electronic Volume 1024 0.000000 1023
$P3 FL1 FL1 Fluorescence 1024 1.009044 10000
$P4 FL2 FL2 Fluorescence 1024 1.009044 10000
$P5 FL3 FL3 Fluorescence 1024 1.009044 10000
$P6 TIME Time 1024 0.000000 1023
316 keywords are stored in the 'description' slot
> Cneg[[2]] #summary of each frame with quartiles
flowFrame object 'S3Cneg10minR2_10252014.LMD'
with 19839 cells and 6 observables:
name desc range minRange maxRange
$P1 SS Side Scatter 1024 1.009044 10000
$P2 EV Electronic Volume 1024 0.000000 1023
$P3 FL1 FL1 Fluorescence 1024 1.009044 10000
$P4 FL2 FL2 Fluorescence 1024 1.009044 10000
$P5 FL3 FL3 Fluorescence 1024 1.009044 10000
$P6 TIME Time 1024 0.000000 1023
316 keywords are stored in the 'description' slot
> Cneg[[3]] #summary of each frame with quartiles
flowFrame object 'S3Cneg10minR3_10252014.LMD'
with 39266 cells and 6 observables:
name desc range minRange maxRange
$P1 SS Side Scatter 1024 1.009044 10000
$P2 EV Electronic Volume 1024 0.000000 1023
$P3 FL1 FL1 Fluorescence 1024 1.009044 10000
$P4 FL2 FL2 Fluorescence 1024 1.009044 10000
$P5 FL3 FL3 Fluorescence 1024 1.009044 10000
$P6 TIME Time 1024 0.000000 1023
316 keywords are stored in the 'description' slot