Skip to content

Commit 397e5da

Browse files
committed
hide output to tidy up
1 parent 8948fff commit 397e5da

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lectures/inflation_history.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ Let's start by installing the necessary Python packages.
2020
The `xlrd` package is used by `pandas` to perform operations on Excel files.
2121

2222
```{code-cell} ipython3
23+
:tags: [hide-output]
2324
!pip install xlrd
2425
```
2526

2627
This lecture also requires `pandas >= 2.1.4`
2728

2829
```{code-cell} ipython3
30+
:tags: [hide-output]
2931
from packaging.version import Version
3032
import pandas as pd
3133
if Version(pd.__version__) < Version('2.1.4'):

0 commit comments

Comments
 (0)