You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rate of growth of the price level is called **inflation** in the popular press and in discussions among central bankers and treasury officials.
19
37
20
38
The price level is measured in units of domestic currency per units of a representative bundle of consumption goods.
@@ -33,7 +51,7 @@ A widely believed explanation of this big difference is that countries' abandoni
33
51
This lecture sets the stage for some subsequent lectures about a theory that macro economists use to think about determinants of the price level, namely, {doc}`cagan_ree` and {doc}`cagan_adaptive`
34
52
```
35
53
36
-
## Four Centuries of Price Levels
54
+
## Four centuries of price levels
37
55
38
56
We begin by displaying data that originally appeared on page 35 of {cite}`sargent2002big` that show price levels for four "hard currency" countries from 1600 to 1914.
39
57
@@ -48,24 +66,6 @@ In the present context, the phrase "hard currency" means that the countries wer
48
66
Under a gold or silver standard, some money also consisted of "warehouse certificates" that represented paper claims on gold or silver coins. Bank notes issued by the government or private banks can be viewed as examples of such "warehouse certificates".
49
67
```
50
68
51
-
We start by installing the necessary Python packages.
Let us bring the data into pandas from a spreadsheet that is [hosted on github](https://github.com/QuantEcon/lecture-python-intro/lectures/datasets/longprices.xls).
70
70
71
71
```{code-cell} ipython3
@@ -100,7 +100,6 @@ for col in cols:
100
100
ax.plot(df_fig5_bef1914.index,
101
101
df_fig5_bef1914[col], label=col)
102
102
103
-
ax.spines[['right', 'top']].set_visible(False)
104
103
ax.legend()
105
104
ax.set_ylabel('Index 1913 = 100')
106
105
ax.set_xlim(xmin=1600)
@@ -112,7 +111,7 @@ plt.show()
112
111
113
112
We say "most years" because there were temporary lapses from the gold or silver standard.
114
113
115
-
By staring at the graph carefully, you might be able to guess when these temporary lapses occurred, because they were also times during which price levels temporarily rose markedly:
114
+
By staring at {numref}`lrpl` carefully, you might be able to guess when these temporary lapses occurred, because they were also times during which price levels temporarily rose markedly:
116
115
117
116
* 1791-1797 in France (French Revolution)
118
117
* 1776-1790 in the US (War for Independence from Great Britain)
@@ -170,7 +169,6 @@ for col in cols:
170
169
ax.text(x=df_fig5.index[-1]+2,
171
170
y=df_fig5[col].iloc[-1], s=col)
172
171
173
-
ax.spines[['right', 'top']].set_visible(False)
174
172
ax.set_yscale('log')
175
173
ax.set_ylabel('Index 1913 = 100')
176
174
ax.set_xlim(xmin=1600)
@@ -181,7 +179,7 @@ fig.text(.5, .0001,
181
179
plt.show()
182
180
```
183
181
184
-
The graph shows that paper-money-printing central banks didn't do as well as the gold and standard silver standard in anchoring price levels.
182
+
{numref}`lrpl_lg` that paper-money-printing central banks didn't do as well as the gold and standard silver standard in anchoring price levels.
185
183
186
184
That would probably have surprised or disappointed Irving Fisher and John Maynard Keynes.
187
185
@@ -195,7 +193,7 @@ In light of the high and persistent inflation that many countries experienced af
195
193
196
194
The breadth and lengths of the inflationary experiences of the twentieth century under paper money fiat standards are historically unprecedented.
197
195
198
-
## Four Big Inflations
196
+
## Four big inflations
199
197
200
198
In the wake of World War I, which ended in November 1918, monetary and fiscal authorities struggled to achieve price level stability without being on a gold or silver standard.
201
199
@@ -275,7 +273,7 @@ def process_df(df):
275
273
return df
276
274
```
277
275
278
-
Now we write plotting functions so we can plot the price level, exchange rates,
276
+
Now we write plotting functions `pe_plot` and `pr_plot` that will build figures that show the price level, exchange rates,
279
277
and inflation rates, for each country of interest.
Staring at the above graphs conveys the following impressions to the authors of this lecture at QuantEcon.
437
+
Staring at {numref}`pi_xrate_austria` and {numref}`inflationrate_austria` conveys the following impressions to the authors of this lecture at QuantEcon.
443
438
444
439
* an episode of "hyperinflation" with rapidly rising log price level and very high monthly inflation rates
445
440
* a sudden stop of the hyperinflation as indicated by the abrupt flattening of the log price level and a marked permanent drop in the three-month average of inflation
It is striking how **quickly** (log) price levels in Austria, Hungary, Poland, and Germany leveled off after rising so quickly.
626
+
It is striking how *quickly* (log) price levels in Austria, Hungary, Poland, and Germany leveled off after rising so quickly.
632
627
633
628
These "sudden stops" are also revealed by the permanent drops in three-month moving averages of inflation for the four countries plotted above.
634
629
@@ -664,7 +659,7 @@ In the end, the German mark stabilized at 1 trillion ($10^{12}$) paper marks to
664
659
665
660
Chapter 3 of {cite}`sargent2002big` described deliberate changes in policy that Hungary, Austria, Poland, and Germany made to end their hyperinflations.
666
661
667
-
Each government stopped printing money to pay for goods and services once again which made its currency convertible to the US dollar or the UK pound.
662
+
Each government stopped printing money to pay for goods and services once again and made its currency convertible to the US dollar or the UK pound.
668
663
669
664
The story told in {cite}`sargent2002big` is grounded in a "monetarist theory of the price level" described in {doc}`cagan_ree` and {doc}`cagan_adaptive`.
0 commit comments