Add plot switch

master
Dan Howe 3 years ago
parent dabbc11715
commit 4f81605606

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

Loading…
Cancel
Save