File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ kernelspec:
1717
1818This lecture offers some historical evidence about fluctuations in levels of aggregate price indexes.
1919
20- Let's start by installing the necessary Python packages, which will be needed to extract information and perform operations on Excel files.
20+ Let's start by installing the necessary Python packages.
21+
22+ The ` xlrd ` package is used by ` pandas ` to perform operations on Excel files.
2123
2224``` {code-cell} ipython3
2325!pip install xlrd
@@ -168,9 +170,9 @@ for col in cols:
168170 y=df_fig5[col].iloc[-1], s=col)
169171
170172ax.set_yscale('log')
171- ax.set_ylabel('Logged Price Levels (Index 1913 = 100)')
173+ ax.set_ylabel('Logs of price levels (Index 1913 = 100)')
172174ax.set_ylim([10, 1e6])
173- ax.set_xlabel('Year ')
175+ ax.set_xlabel('year ')
174176ax.set_xlim(xmin=1600)
175177plt.tight_layout()
176178plt.show()
You can’t perform that action at this time.
0 commit comments