fortify.rectangleGate {ggcyto} | R Documentation |
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.
## S3 method for class 'rectangleGate' fortify(model, data = NULL, ...)
model |
rectangleGate |
data |
data range used for polygon interpolation. |
... |
not used. |
data.table
#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)