diff --git a/src/run_modules/experiment_setup.py b/src/run_modules/experiment_setup.py index 150399cb2e4997a6b9adfb30dfa3ff89de73d4ac..09b9f143fc0442ee34ef5735366145be86b5fa07 100644 --- a/src/run_modules/experiment_setup.py +++ b/src/run_modules/experiment_setup.py @@ -21,7 +21,7 @@ DEFAULT_VAR_ALL_DICT = {'o3': 'dma8eu', 'relhum': 'average_values', 'temp': 'max 'pblheight': 'maximum'} DEFAULT_TRANSFORMATION = {"scope": "data", "method": "standardise", "mean": "estimate"} DEFAULT_PLOT_LIST = ["PlotMonthlySummary", "PlotStationMap", "PlotClimatologicalSkillScore", "PlotTimeSeries", - "PlotCompetitiveSkillScore", "PlotBootstrapSkillScore", "plot_conditional_quantiles", + "PlotCompetitiveSkillScore", "PlotBootstrapSkillScore", "PlotConditionalQuantiles", "PlotAvailability"] diff --git a/src/run_modules/post_processing.py b/src/run_modules/post_processing.py index e8353048f2fa982a9d54900fab93142ed4f1ae30..dfeaf06533e8023cf872763e0f34d98c5dd27a01 100644 --- a/src/run_modules/post_processing.py +++ b/src/run_modules/post_processing.py @@ -195,7 +195,7 @@ class PostProcessing(RunEnvironment): if self.bootstrap_skill_scores is not None and "PlotBootstrapSkillScore" in plot_list: PlotBootstrapSkillScore(self.bootstrap_skill_scores, plot_folder=self.plot_path, model_setup="CNN") - if "plot_conditional_quantiles" in plot_list: + if "PlotConditionalQuantiles" in plot_list: PlotConditionalQuantiles(self.test_data.stations, data_pred_path=path, plot_folder=self.plot_path) if "PlotStationMap" in plot_list: PlotStationMap(generators={'b': self.test_data}, plot_folder=self.plot_path)