Description Usage Arguments Value Author(s) See Also Examples
Plot polygonGate Objects onto an Existing Plot
| 1 2 3 4 | ## S4 method for signature 'polygonGate'
cyto_plot_gate(x, channels, gate_line_type = 1,
  gate_line_width = 2.5, gate_line_col = "red", gate_point = FALSE,
  gate_point_shape = 16, gate_point_size = 1)
 | 
| x | an object of class
 | 
| channels | fluorescent channels to used to construct the plot. | 
| gate_line_type | integer [0,6] which controls the line type, set to
 | 
| gate_line_width | numeric to adjust line thickness of gates, set to
 | 
| gate_line_col | indicates the colour of the gate to be constructed, set
to  | 
| gate_point | logical indicating whether points should be included when
plotting the gates, set to  | 
| gate_point_shape | integer [0,25] passed to pch to control the shape of
the points, set to  | 
| gate_point_size | numeric character expansion to control the size of the
points in the drawn gate, set to  | 
gate object with modified co-ordinates for plotting.
Dillon Hammill, Dillon.Hammill@anu.edu.au
cyto_plot_gate,rectangleGate-method
cyto_plot_gate,ellipsoidGate-method
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | library(CytoRSuiteData)
# Load in samples
fs <- Activation
gs <- GatingSet(fs)
# Apply compensation
gs <- compensate(gs, fs[[1]]@description$SPILL)
# Transform fluorescent channels
trans <- estimateLogicle(gs[[4]], cyto_fluor_channels(gs))
gs <- transform(gs, trans)
# Gate using gate_draw
gating(Activation_gatingTemplate, gs)
# Plot
cyto_plot(gs[[4]],
  parent = "root",
  channels = c("FSC-A", "SSC-A")
)
# Cells gate
cyto_plot_gate(getGate(gs, "Cells")[[1]],
  channels = c("FSC-A", "SSC-A"),
  gate_line_col = "purple"
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.