Hello,
Using flowcore functions, I would like to keep columns containing raw data in a flowset after applying a transformation, example:
logicleT <- logicleTransform( w = 0.5, t= 10000, m =4.5) transformation <- transformList(c("FL2-A", "FL3-A", "FL6-A", "FL10-A"), logicleT ) newFlowSet <- transform(flowset, transformation)
If done as above, newFlowSet will contain flowframes with columns with transformed data and not the original data.
Is it possible at all to retain the original columns and add new columns with the transformed values?
Many thanks.
Thanks, this works nicely.
I want to keep all columns in the flowset for subsequent conversion into a single data.frame that I use as a data source for ggplot.