spectrochempy.multiplotο
- multiplot(datasets=None, labels=None, nrow=1, ncol=1, method='lines', sharex=False, sharey=False, sharez=False, colorbar=False, suptitle=None, suptitle_color='k', mpl_event=True, return_dict=False, **kwargs)[source]ο
Generate a figure with multiple axes arranged in array (n rows, n columns).
- Parameters:
datasets (nddataset or list of nddataset) β Datasets to plot.
labels (list of str) β The labels that will be used as title of each axes.
method (str, default to
mapfor 2D andlinesfor 1D data) β Type of plot to draw in all axes (lines,scatter,stack,map,`image` orwith_transposed).nrows, ncols (int, default=1) β Number of rows/cols of the subplot grid. ncol*nrow must be equal to the number of datasets to plot.
sharex, sharey (bool or {βnoneβ, βallβ, βrowβ, βcolβ}, default=False) β Controls sharing of properties among x (
sharex) or y (sharey) axes:- True or 'all' : x- or y-axis will be shared among all subplots. - False or 'none' : each subplot x- or y-axis will be independent. - 'row' : each subplot row will share an x- or y-axis. - 'col' : each subplot column will share an x- or y-axis.
When subplots have a shared x-axis along a column, only the x tick labels of the bottom subplot are visible. Similarly, when subplots have a shared y-axis along a row, only the y tick labels of the first column subplot are visible.
sharez (bool or {βnoneβ, βallβ, βrowβ, βcolβ}, default=False) β Equivalent to sharey for 1D plot. for 2D plot, z is the intensity axis (i.e., contour levels for maps or the vertical axis for stack plot), y is the third axis.
figsize (2-tuple of floats) β
(width, height)tuple in inches.dpi (float) β Dots per inch
facecolor (color) β The figure patch facecolor; defaults to rc
figure.facecolor.edgecolor (color) β The figure patch edge color; defaults to rc
figure.edgecolor.linewidth (float) β The figure patch edge linewidth; the default linewidth of the frame.
frameon (bool) β If
False, suppress drawing the figure frame.left (float in the [0-1] interval) β The left side of the subplots of the figure.
right (float in the [0-1] interval) β The right side of the subplots of the figure.
bottom (float in the [0-1] interval) β The bottom of the subplots of the figure.
top (float in the [0-1] interval) β The top of the subplots of the figure.
wspace (float in the [0-1] interval) β The amount of width reserved for blank space between subplots, expressed as a fraction of the average axis width.
hspace (float in the [0-1] interval) β The amount of height reserved for white space between subplots, expressed as a fraction of the average axis height.
suptitle (str) β Title of the figure to display on top.
suptitle_color (color) β Color of the subtitles