multipleplots¶
-
paralytics.utils.
multipleplots
(data, x, nrows=1, ncols=1, figsize=(8, 6), plot_type='scatterplot', **params)[source]¶ Paints any specified plot from the seaborn library multiple times.
- Parameters
- data: DataFrame
Data which columns will be plotted.
- x: list, optional (default=1)
List of columns to plot one after another.
- n{rows, cols}: int, optional (default=1)
Number of {rows, cols} transferred to plt.subplots().
- figsize: list-like, optional (default=(8, 6))
Size of every figure created on subsequent axes.
- plot_type: string, optional (default=’scatterplot’)
Specific plot from the seaborn library to be plotted multiple times against every given element from x.
- params: dict
Dictionary of optional parameters passed to the chosen seaborn plot.
- Returns
- None