sup3r.utilities.plotting.plot_single_contour

plot_single_contour(data, xbound, ybound, CBLabel='', title='', xAxisName=None, yAxisName=None, vmin=None, vmax=None, suptitle=None)[source]

Plot single contour

Parameters:
  • data (numpy array) – data to plot, must be 2D

  • xbound (list) – min and max bounds of x axis

  • ybound (list) – min and max bounds of y axis

  • CBLabel (str, optional) – label of color bar, by default empty string

  • title (str, optional) – contour title, by default empty string

  • xAxisName (str, optional) – x axis label, by default None

  • yAxisName (str, optional) – y axis label, by default None

  • vmin (float, optional) – min val of the contour, by default None

  • vmax (float, optional) – max val of the contour, by default None

  • suptitle (str, optional) – global title of the subplots