plots.quickplot =============== .. py:module:: plots.quickplot Functions --------- .. autoapisummary:: plots.quickplot.quickplot Module Contents --------------- .. py:function:: 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. :param \*args: The data to be plotted. :type \*args: list :param rows: Number of rows in the subplot layout. :type rows: int, optional :param columns: Number of columns in the subplot layout. :type columns: int, optional :param domain: The domain of the plot. :type domain: string or tuple, optional :param methods: The plot method(s) to apply. :type methods: string or list, optional :param mode: 'subplots' (default) or 'overlay'. :type mode: string, optional :param groupby: Dimension along which to group the data. :type groupby: string, optional :param units: Units to convert the data to. :type units: string or list, optional :param \*\*kwargs: Additional arguments for the plot method(s). :type \*\*kwargs: dict