Skip to content

Commit 1a0a299

Browse files
committed
update based on feedback
1 parent 88d4d21 commit 1a0a299

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lectures/time_series_with_matrices.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ We will use the following imports:
4949
import numpy as np
5050
import matplotlib.pyplot as plt
5151
from matplotlib import cm
52-
plt.rcParams["figure.figsize"] = (11, 5) # Set default figure size
52+
53+
# Custom figsize required for this lecture
54+
plt.rcParams["figure.figsize"] = (11, 5)
55+
5356
# Set decimal printing to 3 decimal places
5457
np.set_printoptions(precision=3, suppress=True)
5558
```

0 commit comments

Comments
 (0)