diff --git a/slr/generate_slr_timeseries.py b/slr/generate_slr_timeseries.py index f3943b3..31584f9 100644 --- a/slr/generate_slr_timeseries.py +++ b/slr/generate_slr_timeseries.py @@ -5,6 +5,7 @@ import pandas as pd from scipy import stats import matplotlib.pyplot as plt +PLOT = False START_YEAR = 2020 END_YEAR = 2100 @@ -53,7 +54,7 @@ slr = np.random.permutation(slr.T).T slr[0, :] = df.loc[2020, 'loc'] # Plot first few trajectories -if True: +if PLOT: fig, ax = plt.subplots(1, 3, figsize=(12, 5),