Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: remove matplotlib inline #392

Merged
merged 2 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lectures/_static/quant-econ.bib
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Note: Extended Information (like abstracts, doi, url's etc.) can be found in quant-econ-extendedinfo.bib file in _static/
###

@book{Brunton_Kutz_2019,
place={Cambridge},
title={Data-Driven Science and Engineering: Machine Learning, Dynamical Systems, and Control},
publisher={Cambridge University Press},
author={Brunton, Steven L. and Kutz, J. Nathan},
year={2019}
}

@article{wallis1980statistical,
title={The statistical research group, 1942--1945},
author={Wallis, W Allen},
Expand Down
3 changes: 0 additions & 3 deletions lectures/kalman_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,12 @@ In addition to what's in Anaconda, this lecture will need the following librarie
To conduct simulations, we bring in these imports, as in {doc}`A First Look at the Kalman filter <kalman>`.

```{code-cell} ipython3
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from quantecon import Kalman, LinearStateSpace
from collections import namedtuple
from scipy.stats import multivariate_normal
import matplotlib as mpl

mpl.rcParams['text.usetex'] = True
mpl.rcParams['text.latex.preamble'] = r'\usepackage{{amsmath}}'
```
Expand Down
2 changes: 1 addition & 1 deletion lectures/var_dmd.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ Here an $ m \times n+1 $ data matrix $ \tilde X $ contains many more attributes

Dynamic mode decomposition was introduced by {cite}`schmid2010`,

You can read about Dynamic Mode Decomposition here {cite}`DMD_book` and here [[BK19](https://python.quantecon.org/zreferences.html#id25)] (section 7.2).
You can read about Dynamic Mode Decomposition {cite}`DMD_book` and {cite}`Brunton_Kutz_2019` (section 7.2).

**Dynamic Mode Decomposition** (DMD) computes a rank $ r < p $ approximation to the least squares regression coefficients $ \hat A $ described by formula {eq}`eq:AhatSVDformula`.

Expand Down
Loading