File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -545,8 +545,7 @@ plot_configs = [
545
545
'ylabel': r'$p$'}
546
546
]
547
547
548
- def generate_plots(plot_configs, ax):
549
-
548
+ def experiment_plot(plot_configs, ax):
550
549
# Loop through each subplot configuration
551
550
for axi, config in zip(ax, plot_configs):
552
551
for data in config['data']:
@@ -560,7 +559,7 @@ def generate_plots(plot_configs, ax):
560
559
plt.tight_layout()
561
560
plt.show()
562
561
563
- generate_plots (plot_configs, ax)
562
+ experiment_plot (plot_configs, ax)
564
563
```
565
564
566
565
We invite you to compare these graphs with corresponding ones for the foreseen stabilization analyzed in experiment 1 above.
@@ -604,7 +603,7 @@ plot_configs = [
604
603
(T_seq, p_seq_1, 'Foreseen')], 'ylabel': r'$p$'}
605
604
]
606
605
607
- generate_plots (plot_configs, ax)
606
+ experiment_plot (plot_configs, ax)
608
607
```
609
608
610
609
It is instructive to compare the preceding graphs with graphs of log price levels and inflation rates for data from four big inflations described in
You can’t perform that action at this time.
0 commit comments