Produces a grid plot with each subplot corresponding to the data at the given position.
Parameters: | transform : [valid transform | tuple of valid transforms | None]
gates : [None | Gate | iterable of Gate]
transform_first : bool
channel_names : [str | iterable of str]
kind : [‘scatter’ | ‘histogram’]
autolabel : [False | True]
colorbar : [False | True]
xlabel_kwargs : dict
ylabel_kwargs : dict
|
---|---|
Returns: | (ax_main, ax_subplots) :
|
Examples
Below, plate is an instance of the FCOrderedCollection
>>> plate.plot(['SSC-A', 'FSC-A'], kind='histogram', transform='hlog', autolabel=True)
>>> plate.plot(['SSC-A', 'FSC-A'], transform='hlog', xlim=(0, 10000))
>>> plate.plot(['B1-A', 'Y2-A'], transform='hlog', kind='scatter', color='red', s=1, alpha=0.3)