Skip to content

Commit 216896e

Browse files
committed
Stop saving the graph by default
1 parent e31374a commit 216896e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/lr91/example_max_conductances_test_suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def effects_on_APD90(observational_data_path, test_suite):
155155
return causal_test_results
156156

157157

158-
def plot_ates_with_cis(results_dict: dict, xs: list, save: bool = True, show=False):
158+
def plot_ates_with_cis(results_dict: dict, xs: list, save: bool = False, show=False):
159159
"""Plot the average treatment effects for a given treatment against a list of x-values with confidence intervals.
160160
161161
:param results_dict: A dictionary containing results for sensitivity analysis of each input parameter.
@@ -200,4 +200,4 @@ def normalise_data(df, columns=None):
200200

201201

202202
if __name__ == "__main__":
203-
test_sensitivity_analysis(show=True)
203+
test_sensitivity_analysis(show=True, save=True)

0 commit comments

Comments
 (0)