proliferationGrid: proliferationGrid function for plotting

Description Usage Arguments Author(s) Examples

View source: R/proliferationGrid.R

Description

This function draw a proliferation grid. The grid marks the distance between cell generations calculated with the function generationsDistance

Usage

1
2
3
  proliferationGrid(parentPosition,
    fittedDistance = NA, dataRange = 1024, logDecades = 4,
    lwd=1, lty=3, col=rgb(0,0,0,0.5))

Arguments

parentPosition

Position of the parent Peak from parentFitting

fittedDistance

You can provide the distance estimated from the proliferationFitting function

dataRange

Range of your data (number of data points in the FACS)

logDecades

Number of log decades in the FACS

lwd

Grid line size. See par

lty

Grid line type. See par

col

Grid color. See par and rgb

Author(s)

Davide Rambaldi

Examples

1
2
3
4
5
6
7
8
9
  plot(c(0,1023),c(0,1000), 
       xlim=c(0,1023),
       ylim=c(0,1000),  
       xlab="FACS CHANNEL", 
       ylab="# OF EVENTS", 
       main="A flowFit Empty Plot")
       
  # create a grid with parent at 800
  proliferationGrid(1000, dataRange=1024, logDecades=4)

flowFit documentation built on April 28, 2020, 9:04 p.m.