fortify.rectangleGate: Convert a rectangleGate to a data.table useful for ggplot

View source: R/fortify.R

fortify.rectangleGateR Documentation

Convert a rectangleGate to a data.table useful for ggplot

Description

For 2d rectangelGate, it is converted to a polygonGate first and then dispatch to the fortify method for polygonGate. for 1d, uses geom_vline/hline format.

Usage

## S3 method for class 'rectangleGate'
fortify(model, data = NULL, ...)

Arguments

model

rectangleGate

data

data range used for polygon interpolation.

...

not used.

Value

data.table

Examples

#2d rectangleGate
rect.g <- rectangleGate(list("FSC-H" =  c(300,500), "SSC-H" = c(50,200)))
fortify(rect.g)
#1d gate
rg <- rectangleGate(list("FSC-H" =  c(300,500)))
fortify(rg)


RGLab/ggcyto documentation built on March 3, 2024, 6:23 p.m.