We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88d4d21 commit 1a0a299Copy full SHA for 1a0a299
lectures/time_series_with_matrices.md
@@ -49,7 +49,10 @@ We will use the following imports:
49
import numpy as np
50
import matplotlib.pyplot as plt
51
from matplotlib import cm
52
-plt.rcParams["figure.figsize"] = (11, 5) # Set default figure size
+
53
+# Custom figsize required for this lecture
54
+plt.rcParams["figure.figsize"] = (11, 5)
55
56
# Set decimal printing to 3 decimal places
57
np.set_printoptions(precision=3, suppress=True)
58
```
0 commit comments