renewenergy.create_scatter_plots

Module Contents

Functions

create_scatter_plots(data, x_columns, y_column, nrows, ...)

Create scatter plots for given columns against a common y-column.

renewenergy.create_scatter_plots.create_scatter_plots(data, x_columns, y_column, nrows, ncols, figsize=(32, 17))[source]

Create scatter plots for given columns against a common y-column.

Parameters: - data (DataFrame): The data to plot. - x_columns (list): A list of column names for the x-axis. - y_column (str): The column name for the y-axis. - nrows (int): Number of rows in the subplot grid. - ncols (int): Number of columns in the subplot grid. - figsize (tuple): Figure size.

Returns: - matplotlib.figure.Figure: The created figure.