fig, axes = plt.subplots(3, figsize=(10,7))ax = axes[0]ax.plot(res_fedfunds4.smoothed_marginal_probabilities[0])ax.set(title='Smoothed probability of a low-interest rate regime')ax = axes[1]ax.plot(res_fedfunds4.smoothed_marginal_probabilities[1])ax.set(title='Smoothed probability of a medium-interest rate regime')ax = axes[2]ax.plot(res_fedfunds4.smoothed_marginal_probabilities[2])ax.set(title='Smoothed probability of a high-interest rate regime')fig.tight_layout()
评论