We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8948fff commit 397e5daCopy full SHA for 397e5da
lectures/inflation_history.md
@@ -20,12 +20,14 @@ Let's start by installing the necessary Python packages.
20
The `xlrd` package is used by `pandas` to perform operations on Excel files.
21
22
```{code-cell} ipython3
23
+:tags: [hide-output]
24
!pip install xlrd
25
```
26
27
This lecture also requires `pandas >= 2.1.4`
28
29
30
31
from packaging.version import Version
32
import pandas as pd
33
if Version(pd.__version__) < Version('2.1.4'):
0 commit comments