Learn R Programming

cyanoFilter (version 0.1.3)

pair_plot: plots the expression matrix of a flowframe. Note that, it takes some time to display the plot.

Description

plots the expression matrix of a flowframe. Note that, it takes some time to display the plot.

Usage

pair_plot(flowfile, notToPlot = c("TIME"))

Arguments

flowfile

flowframe to be plotted

notToPlot

column in expression matrix not to be plotted

Examples

Run this code
# NOT RUN {
flowfile_path <- system.file("extdata", "text.fcs", package = "cyanoFilter",
              mustWork = TRUE)
flowfile <- flowCore::read.FCS(flowfile_path, alter.names = TRUE,
                               transformation = FALSE, emptyValue = FALSE,
                               dataset = 1) #FCS file contains only one data object
flowfile_nona <- cyanoFilter::nona(x = flowfile)
flowfile_noneg <- cyanoFilter::noneg(x = flowfile_nona)
flowfile_logtrans <- lnTrans(x = flowfile_noneg, c('SSC.W', 'TIME'))
pair_plot(x = flowfile_logtrans,
          notToPlot = c("TIME", "FSC.HLin", "RED.R.HLin", "NIR.R.HLin"))

# }

Run the code above in your browser using DataLab