How to use the rdtools.plotting.soiling_monte_carlo_plot function in rdtools

To help you get started, we’ve selected a few rdtools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NREL / rdtools / rdtools / system_analysis.py View on Github external
Extra parameters passed to plotting.soiling_monte_carlo_plot()

        Returns
        -------
        matplotlib.figure.Figure

        See Also
        --------
        rdtools.plotting.soiling_monte_carlo_plot
        '''

        keys = [f'{result_to_plot}_soiling_results',
                f'{result_to_plot}_aggregated']
        results_dict, aggregated = self.calculate(keys)

        fig = plotting.soiling_monte_carlo_plot(results_dict['calc_info'],
                                                aggregated, **kwargs)
        return fig