plots.quickplot

Functions

quickplot(*args[, rows, columns, domain, crs, ...])

Generate a convenient plot from the given data with optional grouping.

Module Contents

plots.quickplot.quickplot(*args, rows=None, columns=None, domain=None, crs=None, methods='quickplot', mode='subplots', groupby=None, units=None, subplot_titles=None, **kwargs)

Generate a convenient plot from the given data with optional grouping.

Parameters:
  • *args (list) – The data to be plotted.

  • rows (int, optional) – Number of rows in the subplot layout.

  • columns (int, optional) – Number of columns in the subplot layout.

  • domain (string or tuple, optional) – The domain of the plot.

  • methods (string or list, optional) – The plot method(s) to apply.

  • mode (string, optional) – ‘subplots’ (default) or ‘overlay’.

  • groupby (string, optional) – Dimension along which to group the data.

  • units (string or list, optional) – Units to convert the data to.

  • **kwargs (dict) – Additional arguments for the plot method(s).