Skip to content

Commit

Permalink
update based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
HumphreyYang committed Jul 26, 2024
1 parent 88d4d21 commit 1a0a299
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lectures/time_series_with_matrices.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ We will use the following imports:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm
plt.rcParams["figure.figsize"] = (11, 5) # Set default figure size
# Custom figsize required for this lecture
plt.rcParams["figure.figsize"] = (11, 5)
# Set decimal printing to 3 decimal places
np.set_printoptions(precision=3, suppress=True)
```
Expand Down

0 comments on commit 1a0a299

Please sign in to comment.