exoiris.tsdata.TSDataGroup.plot#
- TSDataGroup.plot(axs=None, vmin: float = None, vmax: float = None, ncols: int = 1, cmap=None, figsize=None, data: ndarray | None = None) Figure[source]#
Plot all the data sets.
- Parameters:
axs – A 2D ndarray of Axes used for plotting. If None, a new set of subplots will be created.
vmin – The minimum value for the color mapping.
vmax – The maximum value for the color mapping.
ncols – The number of columns in the subplot grid.
cmap – The colormap used for mapping the data values to colors.
figsize – The size of the figure created if
axis None.data – The data to be plotted. If None, the
self.dataattribute will be used.
- Return type: