From 9e68a7f50bddd3ffaed7f148924437ece560593c Mon Sep 17 00:00:00 2001 From: rickecon Date: Fri, 10 Nov 2023 09:13:25 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20OpenSour?= =?UTF-8?q?ceEcon/CompMethods@2aa69f999e70d45716d6724a92054f639da6807c=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- basic_empirics/BasicEmpirMethods.html | 4 +- basic_empirics/LogisticReg.html | 32 +++++++------- python/SciPy.html | 4 +- searchindex.js | 2 +- struct_est/SMM.html | 60 +++++++++++++-------------- 5 files changed, 51 insertions(+), 51 deletions(-) diff --git a/basic_empirics/BasicEmpirMethods.html b/basic_empirics/BasicEmpirMethods.html index e5b6d2c..2ee8e0a 100644 --- a/basic_empirics/BasicEmpirMethods.html +++ b/basic_empirics/BasicEmpirMethods.html @@ -940,7 +940,7 @@

Contents

-
/tmp/ipykernel_2788/3993614049.py:4: SettingWithCopyWarning: 
+
/tmp/ipykernel_2739/3993614049.py:4: SettingWithCopyWarning: 
 A value is trying to be set on a copy of a slice from a DataFrame
 
 See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
@@ -1600,7 +1600,7 @@ 

Contents

Model: OLS Adj. R-squared: 0.608 Method: Least Squares F-statistic: 171.4 Date: Fri, 10 Nov 2023 Prob (F-statistic): 4.16e-24 -Time: 08:34:48 Log-Likelihood: -119.71 +Time: 09:12:57 Log-Likelihood: -119.71 No. Observations: 111 AIC: 243.4 Df Residuals: 109 BIC: 248.8 Df Model: 1 diff --git a/basic_empirics/LogisticReg.html b/basic_empirics/LogisticReg.html index fcf2153..13b6508 100644 --- a/basic_empirics/LogisticReg.html +++ b/basic_empirics/LogisticReg.html @@ -1141,29 +1141,29 @@

Contents

13.2.2.4. Interpreting coefficients (log odds ratio)#

The odds ratio in the logistic model is provides a nice way to interpret logit model coefficients. Let \(z\equiv X^T\beta = \beta_0 + \beta_1 x_{1,i} + ...\beta_K x_{K,i}\). The logistic model is stated by the probability that the binary categorical dependent variable equals one \(y_i=1\).

-
-(13.11)#\[\begin{equation} +
+(13.11)#\[\begin{equation} P(y_i=1|X,\theta) = \frac{e^z}{1 + e^z} \end{equation}\]

Given this equation, we know that the probability of the dependent variable being zero \(y_i=0\) is just one minus the probability above.

-
-(13.12)#\[\begin{equation} +
+(13.12)#\[\begin{equation} P(y_i=0|X,\theta) = 1 - P(y_i=1|X,\theta) = 1 - \frac{e^z}{1 + e^z} = \frac{1}{1 + e^z} \end{equation}\]

The odds ratio is a common way of expressing the probability of an event versus all other events. For example, if the probability of your favorite team winning a game is \(P(win)=0.8\), then we know that the probability of your favorite team losing that game is \(P(lose)=1-P(win)=0.2\). The odds ratio is the ratio of these two probabilities.

-
-(13.13)#\[\begin{equation} +
+(13.13)#\[\begin{equation} \frac{P(win)}{P(lose)} = \frac{P(win)}{1 - P(win)} = \frac{0.8}{0.2} = \frac{4}{1} \quad\text{or}\quad 4 \end{equation}\]

The odds ratio tells you that the probability of your team winning is four times as likely as your team losing. A gambler would say that your odds are 4-to-1. Another way of saying it is that your team will win four out of five times and will lose 1 out of five times.

In the logistic model, the odds ratio reduces the problem nicely.

-
-(13.14)#\[\begin{equation} +
+(13.14)#\[\begin{equation} \frac{P(y_i=1|X,\theta)}{1 - P(y_i=1|X,\theta)} = \frac{\frac{e^z}{1 + e^z}}{\frac{1}{1 + e^z}} = e^z \end{equation}\]

If we take the log of both sides, we see that the log odds ratio is equal to the linear predictor \(z\equiv X^T\beta = \beta_0 + \beta_1 x_{1,i} + ...\beta_K x_{K,i}\).

-
-(13.15)#\[\begin{equation} +
+(13.15)#\[\begin{equation} \ln\left(\frac{P(y_i=1|X,\theta)}{1 - P(y_i=1|X,\theta)}\right) = z = \beta_0 + \beta_1 x_{1,i} + ...\beta_K x_{K,i} \end{equation}\]

So the interpretation of the coeficients \(\beta_k\) is that a one-unit increase of the variable \(x_{k,i}\) increases the odds ratio or the odds of \(y_i=1\) by \(\beta_{k,i}\) percent.

@@ -1175,18 +1175,18 @@

Contents

The multinomial logit model is a natural extension of the logit model. In contrast to the logit model in which the dependent variable has only two categories, the multinomial logit model accomodates \(J\geq2\) categories in the dependent variable. Let \(\eta_j\) be the linear predictor for the \(j\)th category. $\( \eta_j\equiv \beta_{j,0} + \beta_{j,1}x_{1,i} + ...\beta_{j,K}x_{K,i} \quad\forall y_i = j \)$

The multinomial logit model gives the probability of \(y_i=j\) relative to some reference category \(J\) that is left out.

-
-(13.16)#\[\begin{equation} +
+(13.16)#\[\begin{equation} Pr(y_i=j|X,\theta) = \frac{e^{\eta_j}}{1 + \sum_v^{J-1}e^{\eta_v}} \quad\text{for}\quad 1\leq j\leq J-1 \end{equation}\]

Once the \(J-1\) sets of coefficients are estimated, the final \(J\)th set of coefficients are a residual based on the following expression.

-
-(13.17)#\[\begin{equation} +
+(13.17)#\[\begin{equation} Pr(y_i=J|X,\theta) = \frac{1}{1 + \sum_v^{J-1}e^{\eta_v}} \end{equation}\]

The analogous log odds ratio interpretation applies to the multinomial logit model.

-
-(13.18)#\[\begin{equation} +
+(13.18)#\[\begin{equation} \ln\left(\frac{Pr(y_i=j|X,\theta)}{Pr(y_i=J|X,\theta)}\right) = \eta_j = \beta_{j,0} + \beta_{j,1}x_{1,i} + ...\beta_{j,K}x_{K,i} \quad\text{for}\quad 1\leq j \leq J-1 \end{equation}\]

This is the odds ratio of \(y_i=j\) relative to \(y_i=J\). The interpretation of the \(\beta_{j,k}\) coefficient is the predicted percentage change in the log odds ratio of \(y_i=j\) to \(y_i=J\) from a one-unit increase in variable \(x_{k,i}\).

diff --git a/python/SciPy.html b/python/SciPy.html index 2c172d9..e5dfbd4 100644 --- a/python/SciPy.html +++ b/python/SciPy.html @@ -678,7 +678,7 @@

Contents

 message: The solution converged.
  success: True
   status: 1
-     fun: [-1.239e-13 -1.013e-13]
+     fun: [-1.235e-13 -1.017e-13]
        x: [ 8.463e-01  2.331e+00]
     nfev: 10
     fjac: [[-8.332e-01  5.529e-01]
@@ -688,7 +688,7 @@ 

Contents

The solution for (x, y) is: [0.84630378 2.33101497] -The error values for eq1 and eq2 at the solution are: [-1.2390089e-13 -1.0125234e-13] +The error values for eq1 and eq2 at the solution are: [-1.23456800e-13 -1.01696429e-13]
diff --git a/searchindex.js b/searchindex.js index 57fcde2..8517082 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["CompMethods_references", "appendix/appendix", "appendix/glossary", "basic_empirics/BasicEmpirMethods", "basic_empirics/LogisticReg", "basic_ml/ml_intro", "contrib/contributing", "deep_learn/intro", "git/intro", "index", "python/DocStrings", "python/ExceptionsIO", "python/Matplotlib", "python/NumPy", "python/OOP", "python/Pandas", "python/SciPy", "python/StandardLibrary", "python/UnitTesting", "python/intro", "struct_est/GMM", "struct_est/MaxLikelihood", "struct_est/SMM", "struct_est/intro"], "filenames": ["CompMethods_references.md", "appendix/appendix.md", "appendix/glossary.md", "basic_empirics/BasicEmpirMethods.md", "basic_empirics/LogisticReg.md", "basic_ml/ml_intro.md", "contrib/contributing.md", "deep_learn/intro.md", "git/intro.md", "index.md", "python/DocStrings.md", "python/ExceptionsIO.md", "python/Matplotlib.md", "python/NumPy.md", "python/OOP.md", "python/Pandas.md", "python/SciPy.md", "python/StandardLibrary.md", "python/UnitTesting.md", "python/intro.md", "struct_est/GMM.md", "struct_est/MaxLikelihood.md", "struct_est/SMM.md", "struct_est/intro.md"], "titles": ["References", "Appendix", "Glossary", "12. Basic Empirical Methods", "13. Logistic Regression Model", "14. Basic Machine Learning", "Contributor Guide", "15. Neural Nets and Deep Learning", "11. Git and GitHub", "Computational Methods for Economists using Python", "9. Docstrings and Documentation", "3. Exception Handling and File Input/Output", "7. Matplotlib", "5. NumPy", "4. Object Oriented Programming", "6. Pandas", "8. SciPy: Root finding, minimizing, interpolation", "2. Python Standard Library", "10. Unit Testing", "1. Introduction to Python", "18. Generalized Method of Moments Estimation", "17. Maximum Likelihood Estimation", "19. Simulated Method of Moments Estimation", "16. Introduction to Structural Estimation"], "terms": {"ajr01": 0, "daron": [0, 3], "acemoglu": 0, "simon": 0, "johnson": 0, "jame": [0, 3], "A": [0, 2, 3, 4, 8, 10, 12, 13, 14, 15, 16, 22, 23], "robinson": 0, "The": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23], "coloni": [0, 3], "origin": [0, 3, 6, 8, 9, 10, 15, 16, 18, 22], "compar": [0, 3, 16, 22, 23], "develop": [0, 2, 3, 9, 13, 15, 19, 22, 23], "an": [0, 2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22], "empir": [0, 4, 22], "investig": [0, 3], "american": [0, 3, 9], "econom": [0, 2, 3, 9, 14, 19, 23], "review": [0, 2, 3, 8, 10], "91": [0, 3], "5": [0, 3, 4, 12, 13, 14, 15, 16, 17, 22, 23], "1369": 0, "1401": 0, "decemb": 0, "2001": [0, 10], "url": [0, 4, 8, 15, 22], "http": [0, 2, 3, 4, 8, 9, 10, 12, 13, 15, 16, 19, 22], "www": [0, 3, 4, 19], "aeaweb": 0, "org": [0, 2, 3, 9, 12, 13, 15, 16, 19], "articl": [0, 10, 15], "id": [0, 2, 19], "10": [0, 3, 4, 10, 16, 17, 18, 22], "1257": 0, "aer": 0, "ac03": 0, "j": [0, 3, 4], "\u00e9": [0, 22], "r": [0, 3, 4, 10, 15, 16, 22], "\u00f4": 0, "me": 0, "adda": [0, 22], "russel": 0, "cooper": [0, 22], "dynam": [0, 2, 12, 16, 19, 23], "quantit": [0, 3], "method": [0, 2, 4, 6, 8, 11, 13, 14, 15, 16], "applic": [0, 2, 19, 22], "mit": [0, 10], "press": 0, "2003": [0, 22], "abh23": 0, "robert": 0, "c": [0, 3, 4, 8, 10, 16], "allen": [0, 3], "mattia": 0, "bertazzini": [0, 3], "leander": 0, "heldr": [0, 3], "govern": [0, 3], "113": [0, 3], "2507": 0, "2545": 0, "octob": [0, 3, 8], "2023": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19], "20201919": 0, "acf": 0, "20": [0, 4, 22], "orazio": 0, "attanasio": [0, 23], "sarah": 0, "cattan": 0, "emla": 0, "fitzsimon": 0, "costa": 0, "meghir": 0, "marta": 0, "rubio": 0, "codina": 0, "estim": [0, 2, 3, 5, 9], "product": [0, 6, 13, 22], "function": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22, 23], "human": 0, "capit": [0, 10, 15, 16, 22], "result": [0, 13, 15, 18, 22], "from": [0, 1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "random": [0, 1, 3, 22, 23], "control": [0, 2, 3, 8, 9, 19, 22, 23], "trial": [0, 3, 23], "colombia": 0, "110": 0, "1": [0, 1, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "48": [0, 3, 22], "85": [0, 3, 8, 22], "januari": 0, "2020": [0, 2, 8, 9, 16, 22, 23], "pub": 0, "doi": 0, "pdfplu": 0, "20150183": 0, "bmm19": 0, "martha": 0, "bailei": [0, 23], "olga": 0, "malkova": 0, "zo": 0, "\u00eb": 0, "m": [0, 3, 8, 22], "mclaren": 0, "doe": [0, 4, 10, 11, 13, 16, 19, 22], "access": [0, 2, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19], "famili": [0, 14], "plan": 0, "increas": [0, 3, 4, 18, 22], "children": [0, 4], "s": [0, 2, 3, 4, 8, 9, 11, 12, 13, 14, 15, 16, 19, 22], "opportun": [0, 9], "evid": [0, 23], "war": 0, "poverti": 0, "earli": [0, 10], "year": [0, 3, 8, 12, 14, 15, 16, 22], "titl": [0, 3, 4, 6, 12, 22], "x": [0, 1, 2, 3, 4, 5, 16, 22, 23], "journal": 0, "resourc": [0, 2, 3, 10, 16, 19], "54": 0, "4": [0, 3, 4, 10, 11, 12, 13, 14, 15, 16, 22], "825": 0, "856": [0, 22], "fall": 0, "2019": [0, 9, 23], "jhr": 0, "uwpress": 0, "content": [0, 2, 6, 9, 13, 20, 21, 22, 23], "bs12": 0, "barski": [0, 23], "sim": [0, 22, 23], "inform": [0, 2, 3, 4, 6, 8, 10, 11, 16, 19, 22], "anim": 0, "spirit": 0, "mean": [0, 1, 4, 6, 10, 12, 16, 22], "innov": [0, 13], "consum": [0, 16], "confid": [0, 3], "102": 0, "1343": 0, "1377": 0, "june": [0, 8], "2012": [0, 9, 22, 23], "bm72": 0, "william": 0, "brock": [0, 16], "leonard": 0, "mirman": [0, 16], "optim": [0, 2, 3, 13, 16, 18, 19, 23], "growth": [0, 8, 9, 15], "uncertainti": 0, "discount": [0, 10, 14, 16], "case": [0, 3, 4, 5, 6, 8, 11, 15, 16, 22, 23], "theori": [0, 23], "3": [0, 3, 4, 11, 12, 13, 14, 15, 16, 19, 22], "479": 0, "513": 0, "1972": [0, 16], "dm04": 0, "davidson": [0, 22], "g": [0, 2, 3, 16, 17, 18, 19, 22, 23], "mackinnon": [0, 22], "econometr": [0, 2, 15, 23], "oxford": 0, "univers": [0, 2, 9, 23], "2004": [0, 3, 22], "ds93": 0, "darrel": 0, "duffi": [0, 22], "kenneth": 0, "singleton": [0, 22], "simul": [0, 2, 23], "moment": [0, 3, 4], "markov": 0, "model": [0, 2, 3, 5, 6, 9, 10, 14, 16, 19], "asset": 0, "price": 0, "econometrica": 0, "61": [0, 3], "929": 0, "952": 0, "juli": 0, "1993": [0, 22], "ep17": 0, "richard": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "w": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "evan": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "kerk": 0, "l": [0, 3, 4, 16, 22], "phillip": [0, 16], "advantag": [0, 13], "ellips": 0, "when": [0, 4, 10, 11, 13, 14, 16, 18, 22], "leisur": 0, "util": [0, 16], "comput": [0, 2, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "51": 0, "533": 0, "march": 0, "2017": [0, 3, 16, 23], "fri21": 0, "lex": [0, 13], "fridman": [0, 13], "travi": [0, 13], "oliph": [0, 13], "numpi": [0, 3, 4, 10, 15, 16, 18, 19, 22], "scipi": [0, 3, 13, 18, 19, 22], "anaconda": [0, 13, 19], "python": [0, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18], "scientif": [0, 13, 16, 19], "program": [0, 2, 8, 11, 13, 15, 16, 17, 19, 23], "podcast": [0, 13], "224": 0, "septemb": [0, 8, 13, 19], "22": [0, 4, 13], "2021": [0, 8, 13, 15], "youtu": 0, "gfee3w7f0ww": 0, "si": 0, "xkcrlcw7fxka9oxb": 0, "git22": 0, "github": [0, 2, 3, 6, 9, 10, 19, 22, 23], "octovers": [0, 8], "2022": [0, 8, 9, 19], "state": [0, 4, 8, 9, 16, 22], "open": [0, 2, 6, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "sourc": [0, 2, 4, 8, 9, 10, 13, 15, 18, 19], "softwar": [0, 2, 8, 10, 13], "report": [0, 3, 8, 15, 18, 22], "inc": [0, 2, 9, 13], "novemb": [0, 8], "17": [0, 8, 22], "com": [0, 2, 3, 4, 8, 15, 22], "gvanrossum01": 0, "david": 0, "goodger": [0, 10], "guido": 0, "van": 0, "rossum": 0, "pep": [0, 10], "257": [0, 4, 10], "d": [0, 3, 22], "ocstr": 0, "convent": [0, 10], "enhanc": [0, 10], "propos": [0, 10, 16], "steer": 0, "council": 0, "mai": [0, 6, 16, 19], "29": [0, 3, 4], "0257": 0, "gm96": 0, "christian": 0, "gourieroux": [0, 22], "alain": 0, "monfort": [0, 22], "base": [0, 2, 3, 4, 8, 13, 18, 22], "1996": [0, 22], "hj20": 0, "jeffrei": 0, "humpheri": [0, 16], "tyler": 0, "jarvi": [0, 16], "foundat": [0, 8, 9, 13], "appli": [0, 2, 4, 9, 14, 16, 19], "mathemat": [0, 2, 4, 13, 16, 19, 23], "algorithm": [0, 13, 16], "approxim": [0, 2, 4, 22, 23], "volum": 0, "2": [0, 1, 3, 4, 10, 12, 13, 14, 15, 16, 17, 19, 22], "siam": 0, "societi": 0, "industri": 0, "jwht17": 0, "gareth": [0, 3], "daniela": 0, "witten": 0, "trevor": 0, "hasti": 0, "tibshirani": 0, "introduct": [0, 3, 4, 10, 12, 13, 15], "statist": [0, 3, 4, 5, 8, 15, 16, 22], "learn": [0, 2, 3, 8, 9, 13, 16, 19, 23], "springer": 0, "text": [0, 1, 2, 4, 6, 10, 11, 16, 17, 19, 22, 23], "jud98": 0, "judd": [0, 16], "numer": [0, 3, 4, 13, 15, 19, 22], "1998": [0, 16], "kea10": 0, "michael": 0, "p": [0, 3, 4, 16, 22], "kean": [0, 23], "structur": [0, 2, 5, 9, 10, 19], "vs": [0, 2, 8, 17, 19, 22], "atheoret": [0, 2, 23], "approach": [0, 2, 6, 16, 22, 23], "156": 0, "2010": [0, 15, 23], "lsalanie93": 0, "laroqu": [0, 22], "b": [0, 3, 8, 13, 16, 18, 22], "salani": [0, 22], "lag": 0, "latent": [0, 22], "variabl": [0, 1, 2, 3, 4, 5, 10, 15, 16, 22], "8": [0, 3, 4, 10, 14, 15, 16, 18, 19, 22], "supplement": 0, "119": [0, 3], "133": 0, "li91": 0, "bong": 0, "soo": 0, "lee": [0, 22], "beth": 0, "fisher": 0, "ingram": [0, 22], "time": [0, 2, 3, 4, 8, 10, 11, 13, 14, 16, 18, 19, 22, 23], "seri": [0, 2, 3, 15, 22, 23], "47": [0, 3], "197": [0, 22], "205": 0, "februari": 0, "1991": [0, 22], "mcf89": 0, "daniel": 0, "mcfadden": [0, 22], "discret": [0, 4], "respons": 0, "without": [0, 2, 4, 10, 16, 19], "integr": [0, 2, 8, 16, 22], "57": [0, 3], "995": 0, "1026": 0, "1989": [0, 22], "mer23": 0, "mertz": [0, 10], "document": [0, 2, 3, 6, 8, 15, 16, 17, 18, 19, 22], "code": [0, 2, 3, 4, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19], "complet": [0, 2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "guid": [0, 9, 10], "tutori": [0, 3, 10, 19], "realpython": [0, 10], "onlin": [0, 3, 8, 9, 15, 17, 22], "08": [0, 3, 13, 22], "nw87": 0, "whitnei": 0, "k": [0, 3, 4, 16, 22], "newei": 0, "west": 0, "simpl": [0, 3, 15, 18, 19, 22], "posit": [0, 3, 16, 22], "semi": 0, "definit": [0, 2, 5, 10, 14, 16, 22, 23], "heteroskedastici": 0, "autocorrel": [0, 22], "consist": [0, 10, 14, 19], "covari": [0, 3], "matrix": [0, 3, 13, 16], "55": [0, 3, 15], "703": 0, "708": 0, "1987": [0, 10, 22, 23], "rus87": 0, "john": 0, "rust": [0, 23], "replac": [0, 3, 4], "gmc": 0, "bu": 0, "engin": [0, 3, 13], "harold": 0, "zurcher": 0, "999": 0, "1033": [0, 22], "jstor": 0, "stabl": [0, 3, 15, 19], "1911259": 0, "rus10": 0, "comment": 0, "21": 0, "24": [0, 3, 4, 15, 22], "ss23a": 0, "thoma": 0, "sargent": [0, 3], "stachurski": [0, 3], "linear": [0, 2, 13, 19, 22, 23], "regress": [0, 5, 22], "In": [0, 2, 3, 4, 6, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 22], "quantecon": [0, 3, 19], "lectur": [0, 3, 9, 20, 21, 23], "first": [0, 3, 4, 6, 10, 13, 14, 15, 16, 19, 22], "cours": [0, 9, 20, 21, 22, 23], "With": [0, 15, 22], "chapter": [0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "36": [0, 15, 22], "intro": [0, 1, 5, 7, 19], "simple_linear_regress": 0, "html": [0, 3, 10, 15], "ss23b": 0, "ol": [0, 3], "intermedi": 0, "79": 0, "smi20": 0, "anthoni": 0, "jr": 0, "smith": [0, 22], "indirect": 0, "infer": [0, 5], "matia": 0, "vernengo": 0, "esteban": 0, "perez": 0, "caldentei": 0, "barklei": 0, "rosser": 0, "editor": [0, 2, 17, 19], "new": [0, 2, 3, 4, 6, 8, 13, 14, 15, 16, 18, 22], "palgrav": 0, "dictionari": [0, 13, 14, 15, 22], "macmillan": 0, "econ": [0, 22], "yale": 0, "edu": [0, 3], "palgrave7": 0, "pdf": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 22], "sta23": 0, "stackscal": [0, 19], "most": [0, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "popular": [0, 12, 13], "languag": [0, 8, 10, 13, 14, 15, 17, 19], "grupo": 0, "air": 0, "13": [0, 3, 4, 15, 16], "blog": [0, 4, 8, 13], "top_10_programming_languages_in_2023": 0, "sw20": 0, "ludwig": 0, "straub": [0, 23], "iv": [0, 16, 22], "\u00e1": 0, "n": [0, 3, 4, 16, 17, 22], "wern": [0, 23], "long": [0, 8, 10, 15, 16], "run": [0, 6, 8, 10, 17, 18, 19, 22], "taxat": 0, "chamlei": 0, "revisit": [0, 22], "86": 0, "20150210": 0, "wal20": 0, "jack": 0, "wallen": [0, 8], "master": [0, 9, 13, 18, 23], "main": [0, 2, 3, 4, 6, 10, 15, 22], "start": [0, 3, 8, 10, 13, 16, 22, 23], "what": [0, 4, 6, 10, 11, 12, 13, 15, 16, 18, 19, 22], "need": [0, 3, 4, 10, 13, 14, 15, 16, 18, 19, 22], "do": [0, 4, 10, 11, 12, 13, 15, 16, 19, 22], "now": [0, 3, 4, 8, 13, 15, 16, 17, 18, 22], "technic": 0, "techrepubl": 0, "know": [0, 4, 16, 18, 22], "byuacme23a": 0, "byu": [0, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "acm": [0, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "advanc": [0, 5, 9, 13, 15, 16, 19, 23], "2024": 0, "incom": [0, 3, 16], "senior": [0, 4, 9], "materi": [0, 9, 19, 23], "byuacme23b": 0, "3d": [0, 22], "plot": [0, 3, 4, 12, 15, 16, 19, 22], "matplotlib": [0, 3, 4, 16, 19, 22], "byuacme23c": 0, "except": [0, 6, 19], "file": [0, 2, 3, 6, 8, 9, 12, 13, 14, 15, 17, 18, 19, 22], "input": [0, 2, 10, 14, 16, 18, 19, 22, 23], "output": [0, 2, 6, 15, 16, 18, 19, 23], "junior": 0, "7": [0, 3, 4, 8, 12, 13, 15, 16, 19, 22], "byuacme23d": 0, "6": [0, 3, 4, 12, 15, 16, 18, 22], "byuacme23": 0, "byuacme23f": 0, "byuacme23g": 0, "object": [0, 2, 3, 4, 10, 13, 15, 17, 18, 19, 22], "orient": [0, 19], "byuacme23h": 0, "panda": [0, 3, 4, 12, 19], "byuacme23i": 0, "byuacme23j": 0, "group": [0, 3, 8, 9, 12, 14, 15], "byuacme23k": 0, "standard": [0, 10, 19, 22], "librari": [0, 3, 13, 19, 22], "byuacme23l": 0, "unit": [0, 2, 4, 8, 15, 16, 19, 22], "test": [0, 2, 8, 9, 15, 16, 19, 23], "byuacme23m": 0, "unix": 0, "shell": 0, "vanrossumwc01": 0, "barri": 0, "warsaw": 0, "nick": 0, "coghlan": 0, "tyle": 0, "0008": 0, "wikipediacontributors20a": 0, "wikipedia": [0, 2, 8, 13, 14, 15], "contributor": [0, 2, 8, 9, 13, 14, 15], "ikipedia": 0, "free": [0, 2, 19], "encyclopedia": 0, "19": [0, 22], "august": 0, "en": [0, 10], "wiki": 0, "git": [0, 2, 19], "wikipediacontributors20b": 0, "i": [0, 3, 4, 13, 15, 16, 20, 21, 23], "ntegrat": 0, "environ": [0, 2, 6, 8], "integrated_development_environ": 0, "wikipediacontributors23a": 0, "t": [0, 3, 4, 10, 11, 13, 16, 22], "axonom": 0, "rank": [0, 14, 19], "04": [0, 22], "taxonomic_rank": 0, "wikipediacontributors23b": 0, "ravi": 0, "o": [0, 22], "liphant": 0, "travis_oliph": 0, "wikipediacontributors23c": 0, "anda": 0, "pandas_": 0, "put": [1, 2, 4, 5, 7, 10, 19, 22, 23], "here": [1, 2, 4, 5, 7, 10, 12, 13, 18, 19, 23], "paramet": [1, 2, 4, 5, 14, 16, 22, 23], "mu": [1, 3, 22], "sigma": [1, 10, 16, 22], "lower": [1, 3, 22], "bound": [1, 22], "cutoff": [1, 22], "c_": [1, 10, 16, 22], "lb": [1, 3, 22], "upper": [1, 8, 9, 22], "ub": [1, 22], "simpli": [1, 3, 16, 22], "valu": [1, 4, 8, 10, 13, 14, 15, 16, 18, 22], "defin": [1, 2, 4, 5, 13, 14, 16, 22], "onli": [1, 2, 3, 4, 6, 8, 9, 10, 14, 15, 16, 22, 23], "interv": [1, 3, 4], "rather": [1, 10, 22], "than": [1, 3, 4, 6, 8, 10, 13, 14, 15, 16, 22], "full": [1, 2, 9, 10, 12, 22], "real": [1, 4, 10, 16, 22], "line": [1, 2, 3, 4, 6, 10, 13, 15, 16, 17, 18, 19, 22], "And": [1, 3, 5, 8, 10, 11, 12, 13, 14, 16, 18, 19, 22], "probabl": [1, 3, 14, 18, 22], "ar": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "upweight": 1, "less": [1, 4, 12, 16, 22], "one": [1, 2, 3, 4, 10, 12, 13, 14, 15, 16, 18, 19, 22, 23], "under": [1, 2, 16], "quad": [1, 3, 4, 16, 22, 23], "f": [1, 4, 5, 16, 22], "frac": [1, 4, 16, 22], "phi": [1, 22], "where": [1, 2, 3, 4, 10, 13, 15, 16, 22, 23], "equiv": [1, 4, 16, 22], "sqrt": [1, 22], "pi": [1, 9, 22], "e": [1, 3, 4, 8, 13, 15, 16, 17, 18, 19, 22], "int_": 1, "infti": [1, 4, 16, 22], "dx": 1, "varianc": 1, "cummul": 1, "thi": [1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "interfac": [2, 10], "api": [2, 3, 6, 10, 13], "medium": 2, "rule": [2, 3], "through": [2, 3, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "which": [2, 3, 4, 8, 10, 12, 13, 14, 16, 18, 19, 22, 23], "user": [2, 6, 8, 19], "interact": [2, 8, 10, 19], "includ": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "can": [2, 3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "command": [2, 3, 6, 8, 17], "specif": [2, 3, 4, 14, 16, 22], "local": [2, 3, 4, 6, 10], "termin": [2, 6, 8, 19, 22], "graphic": 2, "also": [2, 3, 4, 6, 8, 10, 14, 15, 16, 19, 20, 21, 22], "benevol": 2, "dictat": [2, 22], "todo": [2, 4, 10], "make": [2, 3, 4, 5, 6, 10, 11, 13, 14, 18, 19, 22, 23], "entri": [2, 4, 8, 10], "bitbucket": [2, 8], "cloud": [2, 3, 4, 6, 8], "manag": [2, 8, 15, 19], "servic": [2, 8, 19], "platform": [2, 8, 9, 19], "design": [2, 8, 16, 23], "enabl": [2, 8], "scalabl": [2, 8, 14], "effici": [2, 8, 14, 22], "secur": [2, 8], "version": [2, 3, 8, 9, 19, 20, 21, 22, 23], "collabor": [2, 8, 9, 10, 13, 18], "link": [2, 8, 19], "bitkeep": 2, "box": [2, 4, 8], "share": [2, 10, 16], "compani": [2, 8], "branch": [2, 6, 18], "calibr": [2, 14, 16, 22], "central": 2, "system": [2, 8, 19, 22, 23], "cvc": 2, "all": [2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23], "repositori": [2, 3, 6, 10, 18, 19, 20, 21, 22, 23], "well": [2, 3, 6, 10, 15, 17, 18, 19, 22], "chang": [2, 4, 6, 9, 14, 15, 16, 22], "histori": [2, 8], "locat": [2, 3], "remot": 2, "server": [2, 10], "check": [2, 4, 14, 18], "out": [2, 3, 4, 22], "them": [2, 3, 8, 10, 11, 22], "back": [2, 16], "creat": [2, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17, 18, 22], "clone": 2, "verb": 2, "noun": 2, "context": [2, 5], "copi": [2, 3, 8, 18], "its": [2, 3, 4, 10, 12, 13, 16, 22, 23], "entir": 2, "distribut": [2, 3, 4, 8, 13, 17, 19, 22], "To": [2, 3, 4, 6, 8, 15, 18, 22], "us": [2, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23], "repo": [2, 8], "path": [2, 9, 17], "your": [2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23], "machin": [2, 3, 6, 10, 13, 19, 23], "accompani": [2, 12, 20, 21], "descriptor": 2, "As": [2, 3, 4, 10, 16, 18, 19, 22], "refer": [2, 3, 4, 6, 19, 22, 23], "via": [2, 6, 10], "internet": [2, 8, 10, 19], "storag": 2, "gener": [2, 3, 4, 9, 10, 12, 14, 16, 18], "cli": 2, "commit": [2, 6], "continu": [2, 4, 8], "data": [2, 6, 9, 12, 13, 15, 16, 17, 19, 20, 21, 22], "process": [2, 11, 13, 22], "dgp": [2, 22], "broadest": [2, 23], "descript": [2, 4, 6, 10, 11, 15, 19, 22, 23], "mechan": [2, 23], "caus": [2, 3, 23], "some": [2, 3, 4, 5, 8, 9, 10, 12, 13, 15, 16, 18, 19, 22, 23], "observ": [2, 3, 4, 10, 15, 16, 22, 23], "phenomenon": [2, 23], "depend": [2, 3, 4, 5, 16, 22, 23], "unfortun": [2, 23], "realist": [2, 23], "too": [2, 4, 22, 23], "complex": [2, 23], "more": [2, 3, 4, 8, 9, 10, 13, 14, 15, 16, 18, 19, 22, 23], "practic": [2, 19, 23], "simplifi": [2, 22, 23], "kei": [2, 6, 15, 16, 22, 23], "concept": [2, 23], "veri": [2, 3, 4, 10, 19, 22, 23], "similar": [2, 3, 4, 15, 22, 23], "characterist": [2, 4, 14, 22, 23], "must": [2, 4, 6, 16, 22, 23], "specifi": [2, 3, 8, 14, 16, 18, 23], "wai": [2, 3, 4, 10, 13, 14, 16, 18, 19, 22, 23], "could": [2, 3, 4, 5, 10, 13, 18, 22, 23], "dvc": [2, 8], "ani": [2, 3, 4, 6, 10, 16, 18, 22], "track": [2, 8, 15], "coordin": 2, "organ": [2, 8, 9, 19, 23], "among": [2, 8, 16, 23], "multipl": [2, 9, 13, 18, 22], "It": [2, 3, 4, 8, 10, 15, 16, 22], "sens": [2, 4, 10], "singl": [2, 15, 16], "have": [2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 19, 22], "same": [2, 3, 4, 10, 12, 13, 14, 16, 19, 22], "dropbox": 2, "endogen": [2, 3, 4, 22], "exogen": [2, 4, 16, 22], "These": [2, 3, 6, 8, 9, 10, 13, 16, 17, 18, 22, 23], "portion": [2, 22, 23], "sometim": [2, 11, 23], "y": [2, 3, 5, 16, 22, 23], "theta": [2, 4, 5, 23], "taken": [2, 8, 23], "given": [2, 3, 4, 16, 22, 23], "outsid": [2, 22, 23], "both": [2, 4, 13, 15, 16, 22, 23], "fork": [2, 6], "capabl": [2, 11, 15, 19], "oper": [2, 13, 15, 19], "resid": [2, 3, 8], "directori": [2, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22], "see": [2, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "websit": [2, 8, 10, 12, 13, 15, 16], "scm": [2, 8], "busi": [2, 8], "footprint": [2, 8], "host": [2, 8, 10], "collect": [2, 8, 10], "million": [2, 8], "addit": [2, 4, 6, 8, 10, 17, 18, 19, 22], "being": [2, 3, 4, 8, 22], "primari": [2, 8, 13, 15, 16, 18], "featur": [2, 4, 6, 8, 10, 19], "project": [2, 8, 9, 10, 13, 15, 19, 22], "action": [2, 6, 8], "associ": [2, 6, 8, 11, 16, 19, 22], "web": [2, 8], "page": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 23], "deploy": [2, 8], "gitlab": [2, 8], "googl": [2, 3, 4, 10], "doc": [2, 3, 15, 19], "drive": [2, 15], "gui": [2, 3], "comsolid": 2, "mani": [2, 3, 4, 10, 13, 14, 16, 19, 22], "often": [2, 4, 5, 10, 12, 15, 16, 22, 23], "memori": [2, 4], "identif": 2, "debugg": 2, "build": [2, 4, 6, 13, 14, 18], "autom": [2, 18], "tool": [2, 18], "linux": [2, 19], "write": [2, 3, 4, 10, 16, 17, 18, 19, 22, 23], "perform": [2, 13, 16, 22], "he": [2, 13], "she": 2, "ha": [2, 3, 4, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "direct": 2, "lvc": 2, "simplest": [2, 22], "common": [2, 3, 4, 10, 14, 17, 19, 22], "vc": 2, "store": [2, 3, 11, 12, 13, 14, 15, 17, 18, 19], "delta": 2, "appl": 2, "backup": 2, "undo": 2, "merg": [2, 6, 15, 18], "set": [2, 3, 10, 14, 16, 18, 22, 23], "effect": [2, 3, 4, 5, 16, 18, 23], "relationship": [2, 3, 4, 16, 23], "understand": [2, 10, 16, 18, 22, 23], "explain": [2, 3, 16, 23], "predict": [2, 4, 5, 10, 23], "phenomena": [2, 23], "might": [2, 3, 10, 14, 16, 18, 22, 23], "0": [2, 3, 4, 6, 13, 14, 16, 17, 22, 23], "vector": [2, 3, 4, 16, 22, 23], "repres": [2, 3, 4, 8, 12, 13, 14, 15, 16, 22, 23], "between": [2, 3, 4, 8, 9, 10, 14, 15, 22, 23], "og": [2, 8, 10, 12, 14, 15, 18], "core": [2, 4, 8, 9, 10, 12, 14, 18], "larg": [2, 8, 10, 13, 15, 16, 22], "scale": [2, 3, 22], "overlap": [2, 5, 9, 16], "macroeconom": [2, 9, 14, 16], "fiscal": [2, 13], "polici": [2, 3, 9], "countri": [2, 3, 12, 14, 15, 16], "usa": [2, 3, 15], "usual": [2, 3, 8, 10, 14, 22], "upon": [2, 14, 18], "digit": [2, 18], "freeli": [2, 19], "avail": [2, 3, 9, 19, 22], "download": [2, 3, 4, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "improv": [2, 9, 10, 16, 22], "encourag": [2, 19], "outward": 2, "aspect": 2, "emphas": [2, 19, 22], "But": [2, 3, 4, 8, 13, 16, 18, 22, 23], "contribut": [2, 6, 8, 18, 22], "inward": 2, "least": [2, 3, 10, 16, 22, 23], "import": [2, 3, 4, 10, 14, 16, 18, 19, 22], "degre": [2, 3, 12, 13], "seen": [2, 22], "other": [2, 3, 4, 5, 6, 8, 11, 12, 13, 16, 18, 19, 22, 23], "workflow": [2, 6, 8, 19], "pull": [2, 9, 18], "request": [2, 9, 18, 22], "reduc": [2, 4, 16, 18, 19, 22], "form": [2, 4, 8, 9, 10, 13, 14, 16, 19, 22], "equat": [2, 3, 4, 10, 13, 22, 23], "either": [2, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23], "deriv": [2, 15, 16, 22, 23], "behavior": [2, 23], "implicitli": [2, 23], "complic": [2, 8, 23], "howev": [2, 3, 5, 8, 9, 10, 13, 16, 19, 22, 23], "becaus": [2, 4, 12, 13, 16, 19, 22, 23], "thei": [2, 4, 5, 6, 8, 10, 13, 16, 19, 22, 23], "nonparametr": [2, 5, 23], "categor": [2, 3, 4, 23], "static": [2, 3, 12, 23], "although": [2, 4, 16, 22, 23], "carri": 2, "contain": [2, 3, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19], "provid": [2, 3, 4, 6, 10, 14, 16, 18, 19], "hub": 2, "lead": [2, 8], "exampl": [2, 6, 8, 10, 19], "individu": [2, 13, 16, 23], "firm": [2, 10, 15, 23], "nonlinear": [2, 3, 5, 16, 22, 23], "record": [2, 4, 16], "order": [2, 4, 10, 14, 22], "were": [2, 3, 6, 8, 12, 14], "made": [2, 8], "those": [2, 4, 6, 10, 13, 15, 16, 19], "previou": [2, 3, 13, 16, 22], "recal": [2, 22], "restor": 2, "visual": [2, 3, 4, 12, 19], "studio": [2, 19], "maintain": [2, 6, 8, 9, 10, 13], "microsoft": 2, "execut": [3, 4, 8, 9, 16, 19, 22], "colab": [3, 4, 10], "notebook": [3, 4, 12, 15, 17, 18, 19, 20, 21, 22, 23], "imag": [3, 4, 8, 9, 12, 20, 21, 22], "allow": [3, 4, 10, 13, 14, 16, 19, 22], "you": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "so": [3, 4, 10, 12, 14, 15, 16, 18, 22], "don": [3, 4, 11, 22], "packag": [3, 4, 6, 9, 10, 12, 13, 15, 16, 18, 22], "manipul": [3, 4, 15], "devic": [3, 4], "browser": [3, 4, 8, 10], "whether": [3, 4], "phone": [3, 4], "tablet": [3, 4], "focu": [3, 4, 13], "give": [3, 4, 6, 8, 10, 15, 16, 22], "reader": [3, 4], "scienc": [3, 9, 16, 19, 22, 23], "want": [3, 4, 6, 8, 11, 15, 16, 18, 19, 22], "each": [3, 4, 9, 10, 12, 13, 14, 15, 16, 19, 22, 23], "come": [3, 4, 5, 16, 19, 22], "awai": [3, 22], "follow": [3, 4, 6, 8, 9, 10, 13, 15, 16, 19, 22, 23], "skill": [3, 12, 13], "differ": [3, 4, 8, 13, 14, 16, 19, 22], "how": [3, 4, 6, 9, 12, 14, 16, 18, 22], "my": [3, 8, 15], "own": [3, 8, 10], "term": [3, 8, 9, 15], "quadrat": [3, 16, 22], "idea": [3, 12, 13], "behind": [3, 16], "bigger": [3, 18, 22], "instrument": 3, "omit": 3, "bia": 3, "logist": 3, "panel": [3, 15], "autoregress": [3, 22], "next": [3, 4, 10, 16, 22], "detail": [3, 6, 8, 9, 10, 16, 22], "treatment": [3, 22], "bridg": 3, "good": [3, 4, 6, 8, 10, 12, 16, 19, 22, 23], "topic": [3, 22], "current": [3, 8, 16, 19, 20, 21], "vol": 3, "No": [3, 4, 22], "tabl": [3, 8, 9, 15], "summari": [3, 19, 22], "eq": 3, "begin": [3, 4, 8, 13, 16, 22, 23], "y_": [3, 22], "sum_": [3, 4, 22], "left": [3, 4, 9, 13, 16, 22], "beta_k": [3, 4], "trmt": 3, "mathbf": 3, "_k": 3, "treated_c": 3, "right": [3, 4, 8, 9, 13, 16, 22], "rho_c": 3, "gamma_t": 3, "nu_": 3, "varepsilon_": [3, 22], "end": [3, 4, 13, 16, 18, 22, 23], "ifram": [3, 11, 12, 13, 14, 15, 17, 18, 19], "below": [3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "thing": [3, 4, 22], "principl": 3, "third": [3, 4, 6, 10, 13], "problem": [3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "spuriou": 3, "direction": 3, "we": [3, 4, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 22], "determin": 3, "rct": [3, 23], "laboratori": [3, 9], "experi": [3, 16], "natur": [3, 4, 8, 22], "quasi": 3, "paper": [3, 10, 22], "spend": 3, "ink": 3, "summar": [3, 8], "describ": [3, 4, 8, 10, 11, 15, 16, 17, 22, 23], "done": [3, 13, 18, 19], "categori": [3, 4], "type": [3, 8, 10, 11, 13, 14, 16, 17, 18, 19, 22], "median": [3, 4], "count": [3, 4, 15, 22], "max": [3, 4], "min": [3, 4], "let": [3, 4, 8, 13, 14, 15, 16, 22], "read": [3, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "adapt": [3, 4, 6], "research": [3, 4, 8, 9, 16, 19, 23], "question": [3, 4, 6], "institut": [3, 9], "help": [3, 6, 8, 10, 15, 19, 22], "outcom": [3, 4], "measur": [3, 15, 22], "proxi": 3, "gdp": [3, 12, 15, 16, 22], "per": [3, 12, 14, 15, 22], "capita": [3, 12, 15], "1995": 3, "adjust": [3, 14, 16], "exchang": 3, "rate": [3, 4, 10, 14, 15, 16, 22], "index": [3, 4, 15, 22], "protect": [3, 18], "against": [3, 22, 23], "expropri": 3, "averag": [3, 4, 22], "over": [3, 13, 15, 16, 18, 22], "1985": 3, "95": 3, "construct": 3, "polit": 3, "risk": [3, 10, 16], "serivc": 3, "webpag": 3, "cell": [3, 10], "maketable1": 3, "dta": 3, "displai": 3, "five": [3, 4, 13, 16], "pd": [3, 4], "path_df1": 3, "opensourceecon": [3, 4, 9, 22], "compmethod": [3, 4, 6, 9, 22], "raw": [3, 4, 15, 22], "basic_empir": [3, 4], "df1": 3, "read_stata": 3, "datafram": [3, 4, 12, 15, 19], "head": [3, 4, 15], "return": [3, 4, 10, 13, 16, 18, 22], "forw": 3, "column": [3, 4, 13, 15, 22], "number": [3, 4, 6, 8, 13, 14, 16, 22], "default": [3, 15, 22], "shortnam": 3, "euro1900": 3, "excoloni": 3, "avexpr": 3, "logpgp95": 3, "cons1": 3, "cons90": 3, "democ00a": 3, "cons00a": 3, "extmort4": 3, "logem4": 3, "loghjypl": 3, "baseco": 3, "afg": 3, "000000": [3, 4], "nan": [3, 4], "93": 3, "699997": 3, "540098": 3, "ago": 3, "363636": 3, "770645": 3, "280": 3, "634789": 3, "411248": 3, "181818": 3, "9": [3, 4, 10, 13, 16, 22], "804219": 3, "arg": [3, 10, 22], "60": [3, 22], "000004": 3, "386364": 3, "133459": 3, "68": 3, "900002": 3, "232656": 3, "872274": 3, "arm": 3, "682482": 3, "dataset": [3, 4, 15, 22], "shape": [3, 4, 13, 22], "tupl": [3, 13, 22], "element": [3, 5, 13, 22], "row": [3, 13, 15, 22], "second": [3, 4, 6, 8, 10, 13, 14, 15, 16, 22], "163": 3, "print": [3, 4, 13, 14, 15, 16, 17, 22], "str": 3, "list": [3, 4, 8, 13, 15, 16], "len": 3, "uniqu": [3, 16], "163observ": 3, "au": 3, "aut": 3, "az": 3, "bdi": 3, "bel": 3, "ben": 3, "bfa": 3, "bgd": 3, "bgr": 3, "bhr": 3, "bh": 3, "bih": 3, "blr": 3, "blz": 3, "bol": 3, "bra": 3, "brb": 3, "btn": 3, "bwa": 3, "caf": 3, "che": 3, "chl": 3, "chn": 3, "civ": 3, "cmr": 3, "cog": 3, "col": 3, "cpv": 3, "cri": 3, "cze": 3, "deu": 3, "dji": 3, "dnk": 3, "dom": 3, "dza": 3, "ecu": 3, "egi": 3, "eri": 3, "esp": 3, "est": [3, 22], "eth": 3, "fin": 3, "fji": 3, "fra": 3, "gab": 3, "gbr": 3, "geo": 3, "gha": 3, "gin": 3, "gmb": 3, "gnb": 3, "grc": 3, "gtm": 3, "hkg": 3, "hnd": 3, "hrv": 3, "hti": 3, "hun": 3, "idn": 3, "ind": [3, 15], "irl": 3, "irn": 3, "irq": 3, "isl": 3, "isr": 3, "ita": 3, "jam": 3, "jor": 3, "jpn": 3, "kaz": 3, "ken": 3, "kgz": 3, "kor": 3, "kwt": 3, "lao": 3, "lbr": 3, "lby": 3, "lka": 3, "lso": 3, "ltu": 3, "lux": 3, "lva": 3, "mar": 3, "mda": 3, "mdg": 3, "mex": 3, "mkd": 3, "mli": 3, "mlt": 3, "mmr": 3, "mng": 3, "moz": 3, "mrt": 3, "mwi": 3, "nam": 3, "ner": 3, "nga": 3, "nic": 3, "nld": 3, "nor": [3, 10], "npl": 3, "nzl": 3, "omn": 3, "pak": 3, "pan": 3, "phl": 3, "png": 3, "pol": 3, "prk": 3, "prt": 3, "pry": 3, "qat": 3, "rom": 3, "ru": 3, "rwa": 3, "sau": 3, "sdn": 3, "sen": 3, "sgp": 3, "sle": 3, "slv": 3, "som": 3, "stp": 3, "sur": 3, "svk": 3, "svn": 3, "swe": 3, "swz": 3, "syr": 3, "tcd": 3, "tgo": 3, "tha": 3, "tjk": 3, "tkm": 3, "tto": 3, "tun": 3, "tur": 3, "twn": 3, "tza": 3, "uga": 3, "ukr": 3, "uri": 3, "uzb": 3, "ven": 3, "vnm": 3, "yem": 3, "yug": 3, "zaf": [3, 15], "zar": 3, "zmb": 3, "zwe": 3, "built": [3, 4, 14, 16, 17, 19], "154": 3, "162": 3, "121": 3, "148": 3, "88": 3, "87": [3, 22], "123": 3, "64": 3, "30": [3, 4, 8, 22], "466232": 3, "666667": 3, "066491": 3, "302509": 3, "590909": 3, "636364": 3, "149425": 3, "857143": 3, "220": [3, 22], "926437": 3, "595984": 3, "731106": 3, "std": [3, 4, 22], "42": 3, "389862": 3, "472866": 3, "804287": 3, "105342": 3, "414689": 3, "339967": 3, "576859": 3, "823132": 3, "411": 3, "498230": 3, "303334": 3, "083726": 3, "109248": 3, "550000": 3, "936093": 3, "540459": 3, "25": [3, 4, 22], "886364": 3, "376192": 3, "750000": 3, "350006": 3, "224609": 3, "741120": 3, "50": [3, 4, 22], "950000": 3, "045455": 3, "265764": 3, "442651": 3, "560648": 3, "75": [3, 4], "625000": 3, "272727": 3, "216228": 3, "253": 3, "259995": 3, "610119": 3, "831277": 3, "100": [3, 8, 17, 22], "288750": 3, "2940": 3, "986165": 3, "expect": [3, 11, 18], "scatterplot": 3, "two": [3, 4, 8, 10, 12, 13, 14, 15, 16, 17, 18], "axi": [3, 4, 13, 22], "draw": [3, 22], "piec": [3, 8], "white": [3, 10], "board": [3, 9], "obviou": 3, "exist": [3, 16, 19], "pyplot": [3, 4, 16, 22], "plt": [3, 4, 16, 22], "scatter": [3, 4, 16, 22], "xlim": [3, 16, 22], "ylim": [3, 16], "xlabel": [3, 4, 16, 22], "ylabel": [3, 4, 16, 22], "ppp": 3, "grid": [3, 4, 13], "color": [3, 4, 16, 22], "grai": [3, 4], "linestyl": [3, 4, 16], "linewidth": [3, 4, 22], "alpha": [3, 4, 16, 22], "show": [3, 4, 10, 12, 16, 18, 22], "fairli": [3, 12], "strong": [3, 4], "higher": 3, "qualiti": 3, "better": [3, 12, 13, 22], "appear": [3, 10], "power": [3, 11, 14, 16], "groupbi": [3, 4, 15], "thought": [3, 22], "whose": 3, "abbrevi": 3, "z": [3, 4, 16, 22], "atom": 3, "letter": [3, 14], "isin": 3, "h": [3, 22], "tmp": 3, "ipykernel_2788": 3, "3993614049": 3, "py": [3, 6, 11, 12, 13, 14, 17, 18, 19], "settingwithcopywarn": 3, "try": [3, 4, 16, 22], "slice": [3, 13], "caveat": 3, "pydata": [3, 15], "user_guid": 3, "view": [3, 10], "28": [3, 4], "449091": 3, "40": [3, 14], "994987": 3, "58": 3, "689655": 3, "870507": 3, "99": [3, 8, 14, 22], "31": [3, 4, 22], "586870": 3, "43": 3, "310207": 3, "104": 3, "653846": 3, "763590": 3, "014099": 3, "96": [3, 14], "anoth": [3, 4, 8, 14, 18, 22], "readabl": [3, 14, 19], "abov": [3, 4, 10, 12, 15, 16, 19, 22], "just": [3, 4, 10, 16, 18, 22], "separ": [3, 15, 19, 22], "restrict": [3, 22], "74": 3, "204545": 3, "381995": 3, "672727": 3, "654546": 3, "236364": 3, "015854": 3, "534877": 3, "701214": 3, "478047": 3, "854914": 3, "104331": 3, "373110": 3, "374386": 3, "624413": 3, "982062": 3, "431": [3, 22], "900574": 3, "347500": 3, "119577": 3, "417576": 3, "075005": 3, "220586": 3, "789016": 3, "301521": 3, "81": 3, "599998": 3, "400960": 3, "500000": [3, 4], "613637": 3, "366871": 3, "259": 3, "889984": 3, "559247": 3, "53": [3, 4], "33": [3, 22], "32": [3, 4, 22], "34": [3, 22], "59": 3, "849130": 3, "160035": 3, "454545": 3, "606061": 3, "617647": 3, "222": 3, "747574": 3, "718197": 3, "777811": 3, "466675": 3, "718516": 3, "103215": 3, "513599": 3, "317588": 3, "527271": 3, "517867": 3, "374": 3, "625153": 3, "223847": 3, "035098": 3, "253829": 3, "145931": 3, "818182": 3, "279319": 3, "71": [3, 4], "262680": 3, "710639": 3, "863636": 3, "107720": 3, "140": 3, "941642": 3, "595533": 3, "659091": 3, "885994": 3, "240": 3, "215740": 3, "602901": 3, "our": [3, 4, 13, 16, 19, 22], "ey": [3, 22], "seem": [3, 8, 22], "figur": [3, 4, 8, 16, 22], "12": [3, 4, 13, 15, 16, 22], "choos": [3, 13, 16, 22], "like": [3, 4, 9, 10, 13, 15, 16, 18, 19, 22], "reason": [3, 4, 16, 22], "assumpt": [3, 4], "logpgp95_i": 3, "beta_0": [3, 4], "beta_1": [3, 4], "avexpr_i": 3, "u_i": [3, 4], "intercept": 3, "trend": 3, "slope": [3, 22], "margin": [3, 5], "deviat": [3, 22], "due": [3, 8, 22], "factor": [3, 10, 22], "involv": 3, "straight": 3, "best": [3, 16, 22], "fit": [3, 4, 16], "accord": [3, 4, 19], "criterion": [3, 16, 22], "np": [3, 4, 10, 16, 22], "drop": [3, 4], "na": 3, "requir": [3, 10, 13, 16, 19, 22], "polyfit": 3, "df1_subset": 3, "dropna": [3, 4], "subset": [3, 15], "sampl": [3, 4, 15, 22], "purpos": [3, 4], "smaller": [3, 16, 22], "label": [3, 4, 16, 22], "marker": [3, 18, 22], "enumer": 3, "annot": 3, "iloc": 3, "poly1d": 3, "black": [3, 4, 16, 22], "fig": [3, 4, 22], "expropropri": 3, "techniqu": 3, "beta": [3, 4, 10, 14, 16, 22], "ordinari": 3, "squar": [3, 16, 22], "name": [3, 4, 5, 8, 9, 13, 15, 18, 22], "impli": [3, 10, 22], "solv": [3, 16, 22], "find": [3, 4, 9, 10, 12, 13, 15, 17, 18, 19, 22], "minim": [3, 5, 6, 13, 18, 22], "sum": [3, 4, 8, 13, 18, 22], "residu": [3, 4], "hat": [3, 4, 5, 16], "_": [3, 4, 16, 22], "min_": [3, 4, 22], "u": [3, 22], "_i": [3, 22], "constant": [3, 15, 16, 17, 19, 22], "add": [3, 6, 8, 10, 14], "consid": [3, 6, 15, 16], "wa": [3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "x_i": [3, 4, 16, 22], "const": 3, "statsmodel": 3, "modul": [3, 10, 16, 17, 18, 19], "arrai": [3, 4, 10, 13, 16, 19, 22], "argument": [3, 10, 13, 15, 16, 22, 23], "pip": 3, "instal": [3, 10], "upgrad": 3, "sm": 3, "reg1": 3, "endog": 3, "exog": 3, "miss": [3, 4], "linear_model": 3, "far": [3, 12], "independ": [3, 4, 16], "instruct": [3, 10, 19], "about": [3, 4, 5, 6, 8, 13, 14, 15, 16, 19, 22, 23], "obtain": [3, 18], "_0": 3, "_1": [3, 16, 22], "calcul": [3, 10, 22], "regressionresultswrapp": 3, "lot": [3, 22], "work": [3, 4, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22], "maximum": [3, 16, 22, 23], "call": [3, 4, 8, 14, 15, 17, 18, 19, 22], "note": [3, 4, 8, 9, 10, 13, 15, 16, 18, 22, 23], "mistakenli": 3, "maketable2": 3, "thu": 3, "slightli": 3, "dep": 3, "611": 3, "adj": 3, "608": 3, "171": 3, "date": [3, 8, 10, 15], "fri": 3, "nov": 3, "prob": 3, "16e": 3, "111": [3, 15], "aic": 3, "243": 3, "df": [3, 15], "109": 3, "bic": 3, "248": 3, "nonrobust": 3, "coef": 3, "err": [3, 22], "025": 3, "975": [3, 22], "6261": 3, "301": [3, 22], "15": [3, 4, 22], "391": 3, "000": [3, 22], "030": 3, "5319": 3, "041": 3, "093": 3, "451": 3, "612": [3, 22], "omnibu": 3, "251": 3, "durbin": 3, "watson": 3, "689": 3, "010": 3, "jarqu": 3, "bera": 3, "jb": 3, "170": 3, "skew": 3, "680": 3, "0102": 3, "kurtosi": 3, "362": [3, 22], "cond": 3, "assum": [3, 4, 16, 22], "correctli": [3, 6], "get": [3, 15, 16, 18, 22], "item": [3, 22], "save": [3, 8, 10, 11, 13, 15, 16, 18, 22], "attribut": [3, 14, 15], "dir": 3, "freedom": 3, "df_resid": 3, "param": [3, 22], "bse": 3, "hc0_se": 3, "hc1_se": 3, "hc2_se": 3, "hc3_se": 3, "_hccm": 3, "__class__": 3, "__delattr__": 3, "__dict__": 3, "__dir__": 3, "__doc__": 3, "__eq__": 3, "__format__": 3, "__ge__": 3, "__getattribute__": 3, "__gt__": 3, "__hash__": 3, "__init__": 3, "__init_subclass__": 3, "__le__": 3, "__lt__": 3, "__module__": 3, "__ne__": 3, "__new__": 3, "__reduce__": 3, "__reduce_ex__": 3, "__repr__": 3, "__setattr__": 3, "__sizeof__": 3, "__str__": 3, "__subclasshook__": 3, "__weakref__": 3, "_abat_diagon": 3, "_cach": 3, "_data_attr": 3, "_data_in_cach": 3, "_get_robustcov_result": 3, "_get_wald_nonlinear": 3, "_is_nest": 3, "_transform_predict_exog": 3, "_use_t": 3, "_wexog_singular_valu": 3, "centered_tss": 3, "compare_f_test": 3, "compare_lm_test": 3, "compare_lr_test": 3, "condition_numb": 3, "conf_int": 3, "conf_int_el": 3, "cov_hc0": 3, "cov_hc1": 3, "cov_hc2": 3, "cov_hc3": 3, "cov_kwd": 3, "cov_param": 3, "cov_typ": 3, "df_model": 3, "diagn": 3, "eigenv": 3, "el_test": 3, "ess": 3, "f_pvalu": 3, "f_test": 3, "fittedvalu": 3, "fvalu": 3, "get_influ": 3, "get_predict": 3, "get_robustcov_result": 3, "info_criteria": 3, "initi": [3, 8, 16, 22, 23], "k_constant": 3, "llf": 3, "load": [3, 22], "mse_model": 3, "mse_resid": 3, "mse_tot": 3, "nob": 3, "normalized_cov_param": 3, "outlier_test": 3, "pvalu": 3, "remove_data": 3, "resid_pearson": 3, "rsquar": 3, "rsquared_adj": 3, "ssr": 3, "summary2": 3, "t_test": 3, "t_test_pairwis": 3, "tvalu": 3, "uncentered_tss": 3, "use_t": 3, "wald_test": 3, "wald_test_term": 3, "wresid": 3, "626089": 3, "531871": 3, "dtype": [3, 4, 22], "float64": [3, 4, 22], "300575": 3, "040621": 3, "scikit": [3, 13], "sklearn": 3, "linearregress": 3, "harder": [3, 8, 18], "valuabl": [3, 10], "go": [3, 4, 6, 8, 9, 14, 16, 19], "63": 3, "saw": [3, 16, 22], "would": [3, 4, 6, 8, 9, 10, 14, 22], "tell": [3, 4, 16], "signific": [3, 18], "05": [3, 13, 22], "reject": [3, 4], "indic": [3, 4], "around": [3, 10, 22], "variat": 3, "shown": [3, 4, 16, 22], "level": [3, 15, 19], "section": [3, 4, 6, 9, 10, 12, 16, 17, 18, 19, 20, 21, 22, 23], "regressionresult": 3, "much": [3, 4, 10, 13, 16, 22], "evidenc": 3, "equal": [3, 4, 5, 14, 16, 18, 22], "minu": [3, 4], "regressor": 3, "One": [3, 4, 13, 16, 18, 19, 22], "robust": [3, 4, 5, 16], "option": [3, 4, 10, 15, 22], "three": [3, 4, 8, 13, 16, 22], "hc1": 3, "hc2": 3, "hc3": 3, "cluster": 3, "mygroup": 3, "overal": [3, 15], "sst": 3, "total": [3, 4, 5, 8, 13, 15, 22], "expres": 3, "ssm": 3, "penal": 3, "extra": [3, 16, 22], "properti": [3, 4, 16, 19, 22], "bullet": [3, 4], "alwai": [3, 8, 16, 22], "explanatori": [3, 4, 5], "joint": 3, "hypothesi": 3, "zero": [3, 4, 10, 13, 16, 22], "d1": 3, "d2": 3, "null": [3, 4], "true": [3, 4, 16, 22], "realli": [3, 22], "small": [3, 6, 22], "normal": 3, "entitl": [3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "support": [3, 13, 19, 23], "student": [3, 9, 13, 23], "equival": [3, 4, 16], "side": [3, 4, 9, 16], "greater": [3, 4, 13, 16, 22], "intuit": [3, 4, 8, 10, 13, 22], "everi": [3, 6, 8, 16, 18, 22], "mean_expr": 3, "predicted_logpdp95": 3, "375240297317506": 3, "easier": [3, 14], "accur": [3, 18, 22], "38455358": 3, "lie": 3, "along": [3, 19, 20, 21, 22], "comparison": [3, 15], "whole": 3, "df1_plot": 3, "blend": 3, "transpar": 3, "opaqu": 3, "legend": [3, 16, 22], "For": [3, 4, 6, 8, 10, 16, 19, 22], "397": 3, "auto": 3, "csv": [3, 4, 12, 15], "folder": [3, 10, 22], "book": [3, 4, 6, 8, 16, 22], "mpg": 3, "mile": 3, "gallon": 3, "cylind": 3, "displac": 3, "cubic": [3, 16], "inch": 3, "horsepow": 3, "weight": 3, "vehicl": 3, "acceler": 3, "mph": 3, "sec": 3, "car": 3, "european": 3, "japanes": 3, "read_csv": [3, 4], "look": [3, 4, 8, 10, 16, 22], "charact": 3, "place": [3, 10, 23], "na_valu": 3, "produc": [3, 18, 22], "df_numer": 3, "block": [3, 10, 16], "scatter_matrix": 3, "figsiz": 3, "diagon": 3, "kde": 3, "corr": [3, 22], "wrong": [3, 4, 22], "fix": [3, 16, 22], "hint": [3, 11], "There": [3, 4, 19, 22], "issu": [3, 9, 11, 22], "split": [3, 4, 16], "mpg_i": 3, "cylinders_i": 3, "beta_2": [3, 4], "displacement_i": 3, "beta_3": [3, 4], "horsepower_i": 3, "qquad": 3, "beta_4": 3, "weight_i": 3, "beta_5": 3, "acceleration_i": 3, "beta_6": 3, "year_i": 3, "beta_7": 3, "origin_i": 3, "european_i": 3, "beta_8": 3, "japanese_i": 3, "NOT": 3, "word": [3, 22], "_6": 3, "part": [3, 6, 8, 18, 19, 22], "identifi": [3, 4, 16, 18, 22], "Is": [3, 16], "wors": 3, "happen": [3, 22], "200": 3, "1999": 3, "ch": [3, 22], "bcf": 3, "usc": 3, "basic": [4, 12, 19], "That": [4, 8, 12, 22], "y_i": 4, "take": [4, 10, 13, 16, 22], "continuum": 4, "class": [4, 10, 14, 15, 16], "binari": [4, 19], "male": 4, "femal": 4, "dead": 4, "aliv": 4, "accept": 4, "geq": [4, 16, 22], "red": [4, 16, 22], "blue": [4, 16], "green": [4, 6, 22], "teenag": 4, "young": [4, 9, 16], "adult": 4, "middl": [4, 13, 16], "ag": [4, 13, 15, 16], "distanc": [4, 22], "matter": 4, "flowercolor_i": 4, "neighborhood_i": 4, "season_i": 4, "income_i": 4, "x_": [4, 16, 22], "th": [4, 22], "Then": [4, 15, 16, 18, 19, 22], "formul": 4, "pr": [4, 6, 8], "foral": [4, 16], "i_j": 4, "otherwis": [4, 22], "pure": 4, "illustr": 4, "seriou": 4, "shortcom": 4, "almost": [4, 22], "strictli": [4, 16, 22], "domin": 4, "variant": [4, 5], "probit": [4, 22], "flexibl": [4, 13], "easili": 4, "commonli": [4, 10, 19], "bare": 4, "loss": [4, 5, 16], "z_i": 4, "beta_p": 4, "nice": [4, 10, 18, 22], "easi": [4, 10, 19], "computation": [4, 22], "conveni": [4, 22], "reinterpret": 4, "redefinit": 4, "drawback": [4, 13], "difficult": [4, 13, 16, 18, 22], "publish": [4, 8, 18], "contrast": 4, "tranform": 4, "map": 4, "monoton": 4, "candid": 4, "bigl": [4, 22], "bigr": [4, 22], "arctan": 4, "cdf": [4, 22], "why": [4, 8, 10], "sin": 4, "co": [4, 9, 13], "criteria": 4, "constrain": [4, 18], "stricli": 4, "x_val": 4, "linspac": [4, 16, 22], "500": [4, 16, 22], "y_val": 4, "exp": [4, 16, 22], "combin": [4, 13, 15, 16, 19, 22], "paramt": [4, 22], "gmm": [4, 20, 22], "match": [4, 22], "overli": 4, "If": [4, 6, 8, 9, 10, 14, 16, 19, 22], "error": [4, 5, 6, 9, 10, 11, 16, 19, 22], "varepsilon_i": 4, "nll": 4, "character": [4, 16, 22], "came": [4, 13], "mathcal": [4, 22], "prod_": 4, "close": [4, 16, 22], "mle": [4, 21, 22], "maxim": [4, 22], "ln": [4, 22], "therefor": [4, 16, 19, 22], "max_": [4, 22], "am": 4, "commentari": 4, "mania": 4, "famou": 4, "passeng": 4, "surviv": 4, "di": 4, "githubusercont": [4, 15, 22], "train": [4, 9, 10], "passengerid": 4, "pclass": 4, "sex": [4, 15], "sibsp": 4, "parch": 4, "ticket": 4, "fare": 4, "cabin": 4, "embark": 4, "891": 4, "714": 4, "446": 4, "383838": 4, "308642": 4, "699118": 4, "523008": 4, "381594": 4, "204208": 4, "353842": 4, "486592": 4, "836071": 4, "14": [4, 22], "526497": 4, "102743": 4, "806057": 4, "49": [4, 15], "693429": 4, "420000": 4, "223": 4, "125000": 4, "910400": 4, "454200": 4, "668": 4, "38": [4, 22], "80": [4, 14], "512": 4, "329200": 4, "ye": 4, "1st": [4, 8, 19], "2nd": [4, 8, 19, 22], "3rd": 4, "gender": 4, "sibl": 4, "spous": 4, "aboard": 4, "parent": 4, "british": 4, "pound": 4, "port": 4, "cherbourg": 4, "q": [4, 22], "queenstown": 4, "southampton": 4, "target": 4, "sinc": [4, 9, 10], "passang": 4, "sure": [4, 6, 11, 18, 22, 23], "value_count": 4, "bar": [4, 12, 15], "chart": 4, "549": 4, "342": 4, "int64": 4, "ax": [4, 16, 22], "subplot": [4, 22], "vbar": 4, "did": [4, 10, 15, 22], "yaxi": 4, "bar_label": 4, "label_typ": 4, "edg": 4, "isnul": 4, "off": [4, 13, 14], "talli": 4, "177": 4, "687": 4, "info": 4, "frame": [4, 15, 22], "rangeindex": 4, "890": 4, "non": [4, 13, 16], "204": 4, "11": [4, 8, 15, 19], "889": 4, "usag": [4, 10], "83": 4, "kb": 4, "select": [4, 6, 15, 22], "major": [4, 19], "should": [4, 6, 8, 15, 18, 22], "analysi": [4, 15, 19], "interest": [4, 8, 10, 14, 16, 19, 22], "exclud": 4, "obvious": 4, "relev": [4, 19], "boat": 4, "affect": [4, 22], "impact": [4, 6], "person": 4, "rel": [4, 10, 16, 17], "paid": 4, "hi": [4, 13], "mayb": [4, 22], "point": [4, 6, 13, 19, 22], "fill": 4, "titanic_data": 4, "2500": 4, "2833": 4, "26": [4, 22], "9250": 4, "35": [4, 16, 22], "1000": [4, 22], "0500": 4, "down": [4, 18], "deal": 4, "imput": 4, "relat": [4, 9, 22], "491": 4, "216": 4, "184": 4, "age_by_pclass_dtalst": 4, "pclass_val": 4, "rang": [4, 22], "age_by_pclass_vec": 4, "remov": 4, "boxplot": 4, "age_by_pclass_vec_nonan": 4, "isnan": 4, "append": 4, "boxplot1": 4, "notch": 4, "vert": 4, "vertic": 4, "align": 4, "patch_artist": 4, "showmean": 4, "whisker": 4, "pink": 4, "lightblu": 4, "lightgreen": 4, "patch": 4, "zip": [4, 19], "set_facecolor": 4, "live": [4, 13, 14, 16], "quartil": 4, "25th": 4, "percentil": 4, "75th": 4, "50th": 4, "great": [4, 10, 19, 22], "triangl": 4, "extend": 4, "5x": 4, "inter": 4, "iqr": 4, "outlier": 4, "beyond": [4, 16], "altern": [4, 8], "histogram": [4, 22], "roughli": [4, 22], "speak": 4, "sai": [4, 22], "younger": 4, "older": [4, 8], "loos": 4, "37": [4, 22], "paseng": 4, "assign": 4, "median_ag": 4, "age_imput": 4, "row_index": 4, "loc": [4, 22], "imputed_ob": 4, "136": 4, "inplac": 4, "convert": 4, "dummi": 4, "reformat": 4, "express": [4, 22], "event": [4, 18], "favorit": [4, 16], "team": [4, 8], "win": 4, "game": 4, "lose": 4, "four": [4, 12, 16, 23], "gambler": 4, "predictor": 4, "coefici": 4, "beta_": 4, "percent": [4, 22], "extens": [4, 10, 19], "accomod": 4, "geq2": 4, "eta_j": 4, "sum_v": 4, "eta_v": 4, "leq": [4, 16, 22], "onc": [4, 6, 8, 12, 16, 22], "final": [4, 13, 15], "analog": [4, 14, 22], "percentag": [4, 22], "iri": 4, "versu": 5, "classif": 5, "parametr": [5, 18], "supervis": 5, "unsupervis": 5, "introduc": [5, 18, 19], "paradigm": 5, "cross": [5, 22], "valid": 5, "artifici": 5, "intellig": [5, 16], "indistinguish": 5, "mostli": 5, "focus": 5, "tune": 5, "highli": [5, 13, 16], "exot": 5, "super": 5, "stochast": [5, 16], "gradient": [5, 22], "descent": 5, "appropri": [5, 13], "nondescript": 5, "On": 5, "accuraci": 5, "outperform": 5, "top": [5, 9, 10, 13], "cost": [5, 10, 19], "interpret": [5, 13, 16, 19], "clear": [5, 6, 8], "hand": [5, 16, 19], "nearli": 5, "imposs": 5, "claim": 5, "neural": 5, "net": 5, "recent": [5, 8, 19, 20, 21], "athei": 5, "re": [5, 22], "establish": [5, 13], "causal": 5, "citat": [5, 9, 10], "economist": [6, 19], "semant": [6, 19], "protocol": 6, "suggest": [6, 10, 16], "correct": [6, 18, 19], "button": [6, 8], "pleas": [6, 9, 15], "concis": 6, "directli": [6, 22], "traceback": [6, 11], "messag": [6, 8, 11, 16, 22], "reproduc": [6, 10], "flow": [6, 8], "submit": [6, 9], "toward": [6, 23], "submiss": 6, "ask": [6, 23], "clarif": 6, "thread": [6, 10], "satisfi": 6, "becom": [6, 8, 18], "format": [6, 10, 13, 15], "signifi": 6, "dev": [6, 8, 22], "conda": [6, 19], "successfulli": [6, 16, 22], "someon": [6, 10], "els": [6, 10, 22], "author": [6, 9, 10], "few": [6, 10, 15, 23], "explan": 6, "break": [6, 11], "past": [6, 11], "connect": [6, 10, 19, 22], "deprec": 6, "guidelin": 6, "compat": [6, 10], "convei": [6, 22], "changelog": 6, "md": [6, 9], "setup": 6, "typograph": 6, "stylist": 6, "ex": 6, "move": [6, 11], "ad": [6, 19], "jupyt": [6, 9, 12, 15, 17, 19, 23], "refactor": 6, "coauthor": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "jason": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "deback": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "warn": 8, "season": 8, "entrant": 8, "curv": 8, "steep": 8, "obstacl": 8, "togeth": [8, 13, 15, 16, 19, 22], "academ": 8, "step": [8, 19], "safeguard": 8, "invov": 8, "diagram": 8, "advoc": 8, "notic": [8, 22], "favicon": 8, "tab": 8, "outset": 8, "ineract": 8, "ideal": [8, 18], "scaleabl": 8, "commun": [8, 13, 19], "cover": [8, 13, 18, 19], "94": 8, "last": [8, 13, 22], "517": 8, "413": 8, "javascript": 8, "90": [8, 22], "fortun": [8, 18], "world": [8, 15, 17, 22], "post": [8, 9, 13], "largest": 8, "discuss": [8, 10, 13, 16], "ff": 8, "rebas": 8, "shane": 8, "ssfc": 8, "tech": 8, "pslmodel": 8, "stai": 8, "up": [8, 13, 17], "modifi": [8, 14], "click": [8, 9], "corner": 8, "dialogu": 8, "confirm": [8, 10, 16], "exact": 8, "account": [8, 10], "navig": [8, 9], "plu": 8, "directoryaboverepo": 8, "rickecon": [8, 9], "upstream": 8, "cd": 8, "v": [8, 9, 22], "ll": [8, 15, 19], "automat": [8, 9, 10, 18], "suppos": [8, 13, 22], "been": [8, 9, 10, 13, 22], "checkout": 8, "devbranchnam": 8, "activ": 8, "uncommit": 8, "statu": [8, 16, 22], "uno": 8, "latest": [8, 10], "filenam": 8, "tag": [8, 10], "onto": 8, "fetch": 8, "stop": [8, 11], "potenti": [8, 18, 22], "offens": 8, "divis": 8, "connot": 8, "exercis": [9, 20, 21], "modern": [9, 13], "scientist": 9, "2008": [9, 15], "primarili": [9, 13, 16], "endeavor": 9, "2016": 9, "assist": 9, "professor": 9, "depart": 9, "brigham": 9, "taught": [9, 23], "undergradu": 9, "intern": 9, "financ": 9, "founder": [9, 13], "director": 9, "2013": 9, "nation": [9, 15], "grant": 9, "math": [9, 10], "emphasi": [9, 19], "curriculum": 9, "present": [9, 15, 16, 22], "advisori": 9, "member": [9, 10], "2014": 9, "2018": [9, 15, 23], "center": [9, 22], "enterpris": 9, "fellow": 9, "becker": 9, "friedman": 9, "chicago": [9, 23], "social": [9, 23], "graduat": [9, 23], "presid": 9, "utah": 9, "jointli": 9, "handl": [9, 19], "welcom": 9, "mainten": [9, 19], "publicli": 9, "subsect": 9, "icon": 9, "markdown": [9, 10, 15, 19], "toggl": 9, "desktop": 9, "window": [9, 11, 12, 13, 14, 15, 17, 18, 19], "screen": 9, "mode": 9, "background": 9, "light": 9, "dark": 9, "bright": 9, "search": [9, 22], "fight": 9, "enter": [9, 15], "lab": [9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "subdirectori": 9, "io": [9, 10], "insert": [9, 22], "haven": 10, "six": [10, 16, 22], "month": 10, "written": [10, 19], "critic": [10, 16], "abil": [10, 18], "yourself": 10, "dissemin": 10, "biggest": 10, "benefit": [10, 16], "writer": 10, "despit": 10, "aspir": 10, "enough": 10, "found": [10, 13, 22], "ourselv": 10, "old": [10, 16, 19], "rewrit": 10, "increment": 10, "script": [10, 18, 19], "longer": [10, 22], "asid": 10, "further": 10, "explor": 10, "differenti": [10, 16, 22], "symbol": [10, 22], "zeros_arrai": 10, "short": 10, "clarifi": 10, "remind": 10, "futur": 10, "someth": [10, 15, 17, 22], "copilot": [10, 19], "feed": 10, "forwrd": 10, "ai": 10, "multi": [10, 15], "enclos": 10, "tripl": 10, "quot": 10, "containt": 10, "after": 10, "pydoc": 10, "def": [10, 16, 18, 22], "foc_sav": 10, "euler": [10, 16], "condit": [10, 16, 22], "household": [10, 16, 22], "r_": [10, 16, 22], "array_lik": 10, "consumpt": [10, 16, 22], "period": [10, 13, 14, 15, 16, 22], "scalar": [10, 22], "coeffici": [10, 16], "avers": [10, 16], "foc": 10, "muc": 10, "mu_c": 10, "euler_error": 10, "latex": 10, "render": 10, "restructuredtext": 10, "markup": 10, "compil": 10, "variou": [10, 15], "style": 10, "sphinxcontrib": 10, "napoleon": 10, "readthedoc": 10, "example_googl": 10, "while": [10, 11, 13, 15, 19, 22], "even": [10, 16, 22], "meet": 10, "sphinx": 10, "recommend": [10, 13, 17, 19], "adopt": 10, "typic": [10, 22], "plain": 10, "lightweight": 10, "special": 10, "myst": 10, "slick": 10, "rst": 10, "discus": 10, "peer": 10, "wrote": [10, 18], "solut": [10, 16, 18, 22], "proper": 10, "who": [10, 13], "peter": 10, "faculti": 10, "1952": 10, "neither": 10, "creator": [10, 13], "supposedli": 10, "pycon": 10, "confer": 10, "referenc": 10, "et": [10, 23], "al": [10, 23], "encount": 11, "certain": 11, "ensur": [11, 14, 18, 22], "occur": [11, 16], "assert": [11, 18], "scroll": [11, 12, 13, 14, 15, 17, 18, 19], "exceptions_fileio": 11, "txt": [11, 22], "wide": [12, 16, 19, 22], "bokeh": 12, "plotli": 12, "seaborn": 12, "Of": [12, 22], "knowleg": 12, "vari": 12, "templat": [12, 13, 14, 15], "matplotlib_intro": 12, "npy": [12, 13], "matplotlib1": 12, "spite": 12, "matplotlib2": 12, "ipynb": [12, 15, 17, 20, 21], "budget": [12, 16], "crime_data": 12, "pandas1": [12, 15], "colleg": 12, "pandas3": [12, 15], "job": 12, "said": [12, 22], "matplotlib3": 12, "collaps": 12, "decad": 12, "within": [12, 14, 22], "fundamant": 13, "stand": 13, "basi": [13, 19], "root": [13, 18], "interpol": [13, 18, 19], "numfocu": [13, 15], "profit": 13, "electr": 13, "matlab": 13, "signal": 13, "phd": 13, "custom": [13, 14, 19], "had": [13, 16, 18], "never": 13, "befor": [13, 16], "network": 13, "felt": 13, "comfort": 13, "him": 13, "algebra": [13, 19], "fundament": 13, "nativ": 13, "hold": [13, 22], "high": [13, 19, 22], "dimension": [13, 15], "tensor": 13, "effeci": 13, "essenti": 13, "numpy_intro": 13, "numpyintro": 13, "advanced_numpi": 13, "advancednumpi": 13, "hardwar": 13, "parallel": 13, "hybrid": 13, "architectur": 13, "across": [13, 15, 22], "tradit": 13, "processor": 13, "gpu": 13, "incorpor": [13, 22], "stack": [13, 15], "area": 13, "diment": 13, "dask": 13, "quantsight": 13, "modular": [13, 19], "mojo": 13, "agent": [13, 14, 16], "bmatrix": [13, 16, 22], "lifecycl": 13, "decis": [13, 16, 22], "amount": [13, 16, 22], "life": [13, 14], "onward": 13, "think": [13, 22], "cohort": 13, "omega": 13, "06": [13, 22], "16": [13, 23], "03": [13, 22], "fraction": [13, 15], "economi": [13, 16, 22], "dot": [13, 22], "transpos": 13, "multipli": 13, "wise": [13, 14], "hadamard": 13, "parenthes": 13, "size": [13, 22], "elsewher": 13, "b_3": 13, "vstack": 13, "b_new": 13, "interview": 13, "liter": 14, "instanc": [14, 16], "correspond": [14, 15, 16, 22], "limit": 14, "classifi": 14, "taxonom": 14, "domain": [14, 16], "kingdom": 14, "phylum": 14, "genu": 14, "speci": 14, "cat": 14, "care": 14, "felida": 14, "mammal": 14, "land": 14, "sub": 14, "dog": 14, "canida": 14, "interoper": 14, "object_ori": 14, "objectori": 14, "prefer": [14, 16], "greek": 14, "p1": 14, "p2": 14, "updat": [14, 15, 20, 21], "instanti": 14, "annual": 14, "beta_annu": 14, "wrangl": 15, "Its": [15, 19], "origini": 15, "mckinnei": 15, "global": [15, 16], "invest": [15, 16, 22], "aqr": 15, "becam": 15, "2009": 15, "sponsor": 15, "2015": 15, "serv": 15, "rich": 15, "layer": 15, "export": 15, "clean": 15, "mung": 15, "2011": [15, 22], "maddison": 15, "databas": 15, "1990": 15, "087": 15, "179": 15, "982": 15, "2000": 15, "753": 15, "475": 15, "45": 15, "886": 15, "583": 15, "526": 15, "18": [15, 22], "574": 15, "267": 15, "319": 15, "806": 15, "842": [15, 22], "335": 15, "166": 15, "inspect": 15, "tail": 15, "keep": [15, 16, 19], "integ": [15, 17, 22], "reshap": [15, 22], "multiindex": 15, "pivot_t": 15, "prior": 15, "sever": [15, 19], "suitabl": 15, "manual": 15, "popul": 15, "extract": 15, "prospect": 15, "south": 15, "africa": 15, "eapd": 15, "drb": 15, "ogzaf": 15, "demograph": 15, "un_zaf_pop": 15, "veric": 15, "header": 15, "zaf_pop": 15, "ageid": 15, "sexid": 15, "timelabel": 15, "renam": 15, "densiti": [15, 22], "offer": 15, "join": 15, "again": [15, 16], "women": 15, "zaf_female_pop": 15, "hard": [15, 16, 22], "comma": [15, 22], "getting_start": 15, "comparison_with_r": 15, "homepag": 16, "eigenvalu": 16, "bx": 16, "restat": 16, "f_r": 16, "x_1": 16, "x_2": 16, "x_k": 16, "arbitrari": [16, 22], "f_1": 16, "f_2": 16, "vdot": [16, 22], "represent": [16, 22], "univari": [16, 22], "multivari": [16, 22], "mathbb": 16, "rightarrow": [16, 22], "neq": 16, "f_": 16, "3x": 16, "10z": 16, "6x": 16, "2y": 16, "20z": 16, "2xy": 16, "exactli": [16, 22], "theoret": 16, "easiest": 16, "f_i": 16, "invers": [16, 22], "recogn": [16, 22], "proven": 16, "finit": [16, 22], "guarante": 16, "converg": [16, 22], "particular": [16, 22], "unless": 16, "proof": 16, "programm": 16, "mind": 16, "absenc": 16, "solutino": 16, "failur": 16, "ever": 16, "poorli": [16, 22], "transform": [16, 22], "192": 16, "accumul": 16, "art": [16, 22], "hybr": 16, "lm": 16, "linearmix": 16, "iter": 16, "guess": [16, 22], "evalu": [16, 22], "until": [16, 22], "arbitrarili": [16, 22], "varepsilon_1": 16, "varepsilon_2": 16, "varepsilon_r": 16, "toler": 16, "strategi": [16, 22], "minimum": [16, 18, 22], "debug": [16, 18], "underli": [16, 22], "incorrect": 16, "steadi": 16, "possibl": [16, 22], "contraint": 16, "calori": 16, "engag": 16, "compon": [16, 19], "4x": 16, "By": 16, "approx": [16, 22], "eq1_y_scipyroot_examp1": 16, "deliv": 16, "eq2_y_scipyroot_examp1": 16, "xmin": [16, 22], "xmax": [16, 22], "xval": [16, 22], "y1val": 16, "y2val": 16, "hline": 16, "dash": 16, "weakli": 16, "similarli": 16, "errfunc_scipyroot_examp1": 16, "init": 16, "init_guess_xi": 16, "violat": 16, "opt": [16, 22], "f1_scipyroot_examp1": 16, "error1": 16, "f2_scipyroot_examp1": 16, "error2": 16, "xy_list": 16, "error_func1": 16, "error_func2": 16, "errors_list": 16, "eq1": 16, "eq2": 16, "fun": [16, 22], "success": [16, 22], "239e": 16, "013e": 16, "463e": 16, "01": [16, 22], "331e": 16, "00": [16, 22], "nfev": [16, 22], "fjac": 16, "332e": 16, "529e": 16, "416e": 16, "714e": 16, "357e": [16, 22], "qtf": 16, "145e": 16, "728e": 16, "84630378": 16, "33101497": 16, "2390089e": 16, "0125234e": 16, "846": 16, "331": 16, "1e": [16, 22], "precis": [16, 22], "b_": 16, "n_": 16, "labor": [16, 22], "suppli": [16, 22], "lifetim": 16, "respect": [16, 22], "reformul": 16, "furthermor": 16, "faster": 16, "pp": [16, 22], "519": 16, "760": 16, "unknown": 16, "3x_1": 16, "9x_3": 16, "4x_1": 16, "6x_2": 16, "2x_3": 16, "5x_1": 16, "8x_2": 16, "7x_3": 16, "x_3": 16, "_2": [16, 22], "_3": 16, "verifi": 16, "answer": [16, 22], "nearest": 16, "balanc": 16, "disutil": 16, "wage": [16, 22], "c_1": 16, "c_2": 16, "c_3": 16, "n_1": 16, "n_2": 16, "n_3": 16, "simultan": 16, "n_4": 16, "youngest": 16, "c_t": [16, 22], "oldest": 16, "die": 16, "w_t": [16, 22], "r_t": [16, 22], "plug": 16, "constraint": [16, 22], "1b_": 16, "equilibrium": 16, "determinist": 16, "reach": 16, "circl": 16, "subject": 16, "keyword": 16, "calculu": 16, "15151515": 16, "13131313": 16, "36363636": 16, "39393939": 16, "31313131": 16, "50505051": 16, "12121212": 16, "37373737": 16, "1010101": 16, "73737374": 16, "52525253": 16, "5959596": 16, "53535354": 16, "75757576": 16, "34343434": 16, "18181818": 16, "92929293": 16, "74747475": 16, "56565657": 16, "3030303": 16, "32323232": 16, "11111111": 16, "17171717": 16, "55555556": 16, "14141414": 16, "38383838": 16, "94949495": 16, "70707071": 16, "33333333": 16, "96969697": 16, "72727273": 16, "77777778": 16, "90512352": 16, "01027934": 16, "0803643": 16, "03083368": 16, "96698762": 16, "48385164": 16, "85230712": 16, "8868821": 16, "10083842": 16, "56115544": 16, "57805259": 16, "54402111": 16, "17034683": 16, "38366419": 16, "50174037": 16, "93270486": 16, "94674118": 16, "21070855": 16, "99938456": 16, "27872982": 16, "2984138": 16, "73002623": 16, "8961922": 16, "77614685": 16, "66510151": 16, "84137452": 16, "86287948": 16, "97202182": 16, "64960951": 16, "19056796": 16, "63384295": 16, "40256749": 16, "99709789": 16, "interp1d": 16, "kind": [16, 22], "spline": 16, "fill_valu": 16, "extrapol": 16, "chap": 16, "uniti": 16, "crra": 16, "nu": 16, "excel": [17, 19], "standardlibrari": 17, "hello": 17, "module_nam": 17, "fibonacci": 17, "sequenc": 17, "sy": 17, "expand": 18, "interdepend": 18, "interconnect": 18, "bug": 18, "cut": 18, "suit": 18, "spec": 18, "test_spec": 18, "unittest": 18, "therebi": 18, "leverag": [18, 19], "yaml": 18, "trigger": 18, "push": 18, "chronolog": 18, "schedul": 18, "codecov": 18, "analyt": [18, 22], "test_min": 18, "test_exercis": 18, "statement": [18, 22], "pass": 18, "ndarrai": 18, "my_sum": 18, "mark": 18, "decor": 18, "skip": 18, "gave": 18, "pypl": 19, "walk": 19, "excercis": 19, "site": 19, "essai": 19, "paragraph": 19, "bind": 19, "attract": 19, "rapid": 19, "glue": 19, "syntax": 19, "reus": 19, "charg": 19, "customiz": 19, "heavili": [19, 22], "mac": 19, "osx": 19, "pickl": 19, "os": 19, "ipython": 19, "session": 19, "spyder": 19, "highlight": [19, 22], "linter": 19, "fly": 19, "declar": 19, "lint": 19, "cornflak": 19, "pack": 19, "gitlen": 19, "pylanc": 19, "amaz": 19, "python_intro": 19, "pythonintro": 19, "etc": 19, "throughout": 19, "string": [19, 22], "feel": 19, "seven": 19, "unixshell1": 19, "sh": 19, "shell1": 19, "gmmest": 20, "structest_w20": [20, 21], "mlest": 21, "semin": 22, "textbook": 22, "383": 22, "394": 22, "parameter": 22, "theta_1": 22, "theta_2": 22, "theta_k": 22, "likelihood": 22, "ml": 22, "m_1": 22, "m_2": 22, "m_r": 22, "difficulti": 22, "aris": 22, "known": 22, "censor": 22, "partial": 22, "tild": 22, "_s": 22, "_r": 22, "norm": 22, "studi": 22, "metric": 22, "e_r": 22, "e_": 22, "e_1": 22, "e_2": 22, "neg": 22, "receiv": 22, "unintend": 22, "properli": 22, "suffer": 22, "littl": 22, "ill": 22, "econometrician": 22, "drawn": 22, "held": 22, "matric": 22, "poor": 22, "smallest": 22, "asymptot": 22, "downweight": 22, "circular": 22, "greatli": 22, "ddot": 22, "denomin": 22, "baselin": 22, "m_": 22, "lastli": 22, "2step": 22, "truli": 22, "procedur": 22, "repeat": 22, "varepsilon": 22, "presenc": 22, "heteroskedast": 22, "82": 22, "exposit": 22, "nw": 22, "lim_": 22, "consistend": 22, "gamma_": 22, "gamma": 22, "t_": 22, "subscript": 22, "length": 22, "overidentifi": 22, "underidentifi": 22, "hessian": 22, "curvatur": 22, "jacobian": 22, "assymptot": 22, "theta_0": 22, "plim": 22, "forward": 22, "x_0": 22, "2h": 22, "econ381totpt": 22, "450": 22, "chosen": 22, "necessari": 22, "stat": 22, "st": 22, "mpl_toolkit": 22, "mplot3d": 22, "axes3d": 22, "trunc_norm_pdf": 22, "cut_lb": 22, "cut_ub": 22, "inflat": 22, "upward": 22, "reflect": 22, "sp": 22, "none": 22, "AND": 22, "BY": 22, "prob_notcut": 22, "pdf_val": 22, "elif": 22, "data_fil": 22, "allow_redirect": 22, "wb": 22, "loadtxt": 22, "num_bin": 22, "bin": 22, "ignor": 22, "hist": 22, "edgecolor": 22, "381": 22, "fontsiz": 22, "550": 22, "smooth": 22, "dist_pt": 22, "mu_1": 22, "300": 22, "sig_1": 22, "mu_2": 22, "400": 22, "sig_2": 22, "70": 22, "mu_3": 22, "558": 22, "sig_3": 22, "176": 22, "midterm": 22, "scores_i": 22, "var": 22, "rnd": 22, "linalg": 22, "lin": 22, "intgr": 22, "cm": 22, "cmap1": 22, "get_cmap": 22, "summer": 22, "trunc_norm_draw": 22, "uniform": 22, "u_": 22, "unif_v": 22, "randomli": 22, "nontrunc": 22, "cut_ub_cdf": 22, "cut_lb_cdf": 22, "unif2_v": 22, "rescal": 22, "tnorm_draw": 22, "ppf": 22, "161": 22, "cut_lb_1": 22, "cut_ub_1": 22, "seed": 22, "1975": 22, "unif_vals_1": 22, "rv": 22, "draws_1": 22, "17445658136046": 22, "626705029347": 22, "632684126222152": 22, "count_d": 22, "bins_d": 22, "ignored_d": 22, "count_m": 22, "bins_m": 22, "ignored_m": 22, "actual": 22, "data_moments2": 22, "mean_data": 22, "var_data": 22, "ndim": 22, "mean_sim": 22, "var_sim": 22, "341": 22, "90869565217395": 22, "7827": 22, "997292398056": 22, "unif_vals_2": 22, "draws_2": 22, "mean_mod": 22, "var_mod": 22, "avg": 22, "299": 22, "17667999": 22, "298": 22, "61052796": 22, "304": 22, "45608507": 22, "37072845": 22, "66868577": 22, "303": 22, "44257561": 22, "68174796": 22, "297": 22, "94014672": 22, "47566228": 22, "63490045": 22, "57207266": 22, "13235013": 22, "296": 22, "63826526": 22, "44460537": 22, "302": 22, "98678012": 22, "09166082": 22, "89663118": 22, "50056988": 22, "56091107": 22, "94919604": 22, "58486163": 22, "109284": 22, "35295389": 22, "4763979": 22, "52345697": 22, "37526236": 22, "54462388": 22, "20756546": 22, "23182905": 22, "92082255": 22, "0881712": 22, "37792528": 22, "69523093": 22, "92838232": 22, "03376169": 22, "9335839": 22, "69026345": 22, "0934371": 22, "70288418": 22, "88610536": 22, "86283252": 22, "10407269": 22, "11654222": 22, "07027394": 22, "29923542": 22, "74552083": 22, "79965311": 22, "59852312": 22, "15616963": 22, "59864217": 22, "295": 22, "52781074": 22, "98090953": 22, "31248226": 22, "44867717": 22, "78114307": 22, "64825256": 22, "68061798": 22, "12495043": 22, "80104697": 22, "305": 22, "78334207": 22, "95811329": 22, "94097772": 22, "02458302": 22, "24287686": 22, "55084554": 22, "62551538": 22, "73820461": 22, "91841652": 22, "97485316": 22, "25235036": 22, "6490962": 22, "80907094": 22, "66541992": 22, "66699545": 22, "68524191": 22, "45696273": 22, "27407424": 22, "22269311": 22, "22887168": 22, "54314562": 22, "85171183": 22, "26405411": 22, "87330671": 22, "59708796": 22, "46696222": 22, "01431864": 22, "27736899": 22, "20186117": 22, "60298908": 22, "34134778": 22, "56023236": 22, "36842728": 22, "81705203": 22, "234357": 22, "93063956": 22, "60442391": 22, "68503428": 22, "32917874": 22, "93011523": 22, "78807296": 22, "854": 22, "27400514": 22, "793": 22, "0403989": 22, "841": 22, "76252205": 22, "819": 22, "86183015": 22, "1055": 22, "80239074": 22, "834": 22, "52746835": 22, "955": 22, "01586149": 22, "93476802": 22, "804": 22, "86989439": 22, "715": 22, "96784403": 22, "927": 22, "66459495": 22, "594": 22, "40100934": 22, "974": 22, "32315671": 22, "903": 22, "2658217": 22, "877": 22, "78145497": 22, "900": 22, "13017505": 22, "871": 22, "56069402": 22, "835": 22, "1365732": 22, "849": 22, "46651395": 22, "02582303": 22, "939": 22, "66718613": 22, "654": 22, "80578245": 22, "998": 22, "41113837": 22, "815": 22, "81618606": 22, "1002": 22, "68353273": 22, "907": 22, "56790563": 22, "724": 22, "85910396": 22, "813": 22, "70435378": 22, "1015": 22, "31786118": 22, "59759144": 22, "888": 22, "63526849": 22, "881": 22, "81187368": 22, "94152651": 22, "976": 22, "74617301": 22, "978": 22, "23045295": 22, "790": 22, "85144559": 22, "933": 22, "04687473": 22, "987": 22, "37433204": 22, "980": 22, "14458376": 22, "1003": 22, "34539581": 22, "859": 22, "63957381": 22, "1050": 22, "9870203": 22, "901": 22, "66724764": 22, "967": 22, "15290016": 22, "1133": 22, "2532708": 22, "60468078": 22, "810": 22, "90856957": 22, "930": 22, "53152973": 22, "921": 22, "0020767": 22, "802": 22, "31271115": 22, "928": 22, "68723732": 22, "1046": 22, "31773806": 22, "932": 22, "0434472": 22, "1025": 22, "05965686": 22, "951": 22, "23678849": 22, "839": 22, "58583279": 22, "941": 22, "39252702": 22, "751": 22, "71431141": 22, "4610679": 22, "1021": 22, "10990195": 22, "863": 22, "80405021": 22, "16404517": 22, "12655726": 22, "1095": 22, "10022731": 22, "848": 22, "76703098": 22, "797": 22, "43467707": 22, "823": 22, "16623979": 22, "1056": 22, "73087072": 22, "821": 22, "12496192": 22, "917": 22, "86308975": 22, "00526807": 22, "862": 22, "52415389": 22, "937": 22, "44315325": 22, "884": 22, "41413606": 22, "28154226": 22, "864": 22, "67286651": 22, "992": 22, "96039373": 22, "4044805": 22, "868": 22, "37693837": 22, "954": 22, "32843377": 22, "814": 22, "35548352": 22, "758": 22, "33184649": 22, "861": 22, "16008799": 22, "8168036": 22, "31470517": 22, "32422902": 22, "1057": 22, "5979759": 22, "843": 22, "6883495": 22, "15291878": 22, "925": 22, "33449079": 22, "778": 22, "30674576": 22, "47550771": 22, "920": 22, "80553617": 22, "902": 22, "19187292": 22, "918": 22, "9232": 22, "880": 22, "47284712": 22, "07711245": 22, "82668059": 22, "1037": 22, "04590733": 22, "75216207": 22, "28595134427394": 22, "898": 22, "7468703753616": 22, "got": 22, "err_vec2": 22, "data_v": 22, "boolean": 22, "fals": 22, "data_mo": 22, "moms_data": 22, "mean_model": 22, "var_model": 22, "moms_model": 22, "err_vec": 22, "sim_val": 22, "w_hat": 22, "vec": 22, "crit_val": 22, "mu_test": 22, "sig_test": 22, "crit_test": 22, "372": 22, "0777280048037": 22, "2663": 22, "8708280174988": 22, "4429893115777857": 22, "crietrion": 22, "mu_init_1": 22, "sig_init_1": 22, "params_init_1": 22, "w_hat1_1": 22, "smm_args1_1": 22, "results1_1": 22, "bfg": 22, "mu_smm1_1": 22, "sig_smm1_1": 22, "3319048024534": 22, "26303566149244": 22, "sim_vals_1": 22, "mean_sim_1": 22, "var_sim_1": 22, "mean_model_1": 22, "var_model_1": 22, "err_1": 22, "opmtim": 22, "6690130387879": 22, "866466512297": 22, "01013506e": 22, "67125614e": 22, "norm_of_projected_gradient_": 22, "_pgtol": 22, "916992449560748e": 22, "07": 22, "123e": 22, "02": 22, "973e": 22, "nit": 22, "jac": 22, "454e": 22, "72": 22, "njev": 22, "hess_inv": 22, "2x2": 22, "lbfgsinvhessproduct": 22, "337": 22, "264": 22, "smm1": 22, "surfac": 22, "lowest": 22, "mu_val": 22, "700": 22, "sig_val": 22, "250": 22, "crit_arg": 22, "mu_ind": 22, "sig_ind": 22, "crit_param": 22, "mu_mesh": 22, "sig_mesh": 22, "meshgrid": 22, "crit_smm1_1": 22, "subplot_kw": 22, "plot_surfac": 22, "rstride": 22, "cstride": 22, "cmap": 22, "view_init": 22, "elev": 22, "azim": 22, "roll": 22, "set_titl": 22, "set_xlabel": 22, "set_ylabel": 22, "set_zlabel": 22, "crit": 22, "func": 22, "tight_layout": 22, "jac_err2": 22, "theta_i": 22, "jac_err": 22, "h_mu": 22, "h_sig": 22, "flatten": 22, "d_err2": 22, "sighat2": 22, "inv": 22, "mu_hat": 22, "sig_hat": 22, "0008975": 22, "00290434": 22, "00114133": 22, "004457": 22, "602499": 22, "98744184": 22, "163793": 22, "83380005": 22, "44881": 22, "85524372": 22, "776": 22, "2087267235777": 22, "211": 22, "8533814781294": 22, "methodolog": 22, "aren": 22, "get_err_mat2": 22, "pt": 22, "model_mo": 22, "err_mat": 22, "err_mat2": 22, "vcv2": 22, "stage": 22, "cov": 22, "w_hat2_1": 22, "00033411": 22, "00142288": 22, "01592874": 22, "4830": 22, "85282784": 22, "53075653": 22, "101": 22, "32740541": 22, "params_init2_1": 22, "smm_args2_1": 22, "results2_1": 22, "mu_smm2_1": 22, "sig_smm2_1": 22, "619": 22, "4295828414915": 22, "199": 22, "0745499003818": 22, "d_err2_2": 22, "sighat2_2": 22, "00088129": 22, "00288863": 22, "0011259": 22, "00443426": 22, "2397": 22, "35566572": 22, "745": 22, "28979427": 22, "232": 22, "01568064": 22, "96279879380848": 22, "232060945338231": 22, "didn": 22, "still": 22, "pretti": 22, "big": 22, "430": 22, "320": 22, "desir": 22, "data_moments4": 22, "binpct_1": 22, "binpct_2": 22, "binpct_3": 22, "binpct_4": 22, "bpct_1": 22, "bpct_2": 22, "bpct_3": 22, "bpct_4": 22, "err_vec4": 22, "bpct_1_dat": 22, "bpct_2_dat": 22, "bpct_3_dat": 22, "bpct_4_dat": 22, "bpct_1_sim": 22, "bpct_2_sim": 22, "bpct_3_sim": 22, "bpct_4_sim": 22, "bpct_1_mod": 22, "bpct_2_mod": 22, "bpct_3_mod": 22, "bpct_4_mod": 22, "criterion4": 22, "norm_pdf": 22, "diagnos": 22, "strang": 22, "mu_init4_1": 22, "sig_init4_1": 22, "params_init4_1": 22, "w_hat4_1": 22, "smm_args4_1": 22, "results4_1": 22, "mu_smm4_1": 22, "sig_smm4_1": 22, "836206045344852": 22, "000e": 22, "decid": 22, "mu_init": 22, "sig_init": 22, "00000001": 22, "epsilon": 22, "solver": 22, "ep": 22, "differnc": 22, "560593472098": 22, "46": 22, "57515195652185": 22, "rel_reduction_of_f_": 22, "_factr": 22, "epsmch": 22, "9819514324825378": 22, "626e": 22, "658e": 22, "845e": 22, "022e": 22, "144": 22, "round": 22, "decim": 22, "bpct_1_data": 22, "bpct_2_data": 22, "bpct_3_data": 22, "bpct_4_data": 22, "sim_vals4_1": 22, "bpct_1_sim4_1": 22, "bpct_2_sim4_1": 22, "bpct_3_sim4_1": 22, "bpct_4_sim4_1": 22, "bpct_1_model4_1": 22, "bpct_2_model4_1": 22, "bpct_3_model4_1": 22, "bpct_4_model4_1": 22, "err4_1": 22, "criterion4_1": 22, "pct": 22, "val": 22, "08695652173913043": 22, "17391304347826086": 22, "6894409937888198": 22, "049689440993788817": 22, "0017391304347826085": 22, "1820496894409938": 22, "7702484472049688": 22, "04596273291925465": 22, "98": 22, "04678571": 22, "11720721": 22, "075": 22, "jac_err4": 22, "d_err4_1": 22, "sighat4_1": 22, "05417814": 22, "07668099": 22, "01242414": 22, "01934295": 22, "0172385": 22, "48770545": 22, "23": 22, "53170341": 22, "13459776": 22, "786856266717139": 22, "258473642422251": 22, "instead": 22, "get_err_mat4": 22, "err_mat4": 22, "vcv4": 22, "pseudo": 22, "invert": 22, "singular": 22, "decomposit": 22, "svd": 22, "w_hat4_2": 22, "pinv": 22, "61938776e": 22, "52040816e": 22, "15173745e": 22, "28571429e": 22, "66198980e": 22, "27670528e": 22, "74107143e": 22, "57738820e": 22, "54617117e": 22, "10625000e": 22, "08330385": 22, "5343057": 22, "21471629": 22, "78666313": 22, "19111144": 22, "22640243": 22, "41240869": 22, "40386307": 22, "68543805": 22, "443683": 22, "params_init4_2": 22, "params_init2_2": 22, "smm_args4_2": 22, "results4_2": 22, "slsqp": 22, "mu_smm4_2": 22, "sig_smm4_2": 22, "5605400454758": 22, "57507128065559": 22, "9984266286568925": 22, "467e": 22, "255e": 22, "sim_vals4_2": 22, "bpct_1_sim4_2": 22, "bpct_2_sim4_2": 22, "bpct_3_sim4_2": 22, "bpct_4_sim4_2": 22, "bpct_1_model4_2": 22, "bpct_2_model4_2": 22, "bpct_3_model4_2": 22, "bpct_4_model4_2": 22, "err4_2": 22, "criterion4_2": 22, "vallei": 22, "floor": 22, "ridg": 22, "mu_vals4": 22, "340": 22, "380": 22, "sig_vals4": 22, "350": 22, "370": 22, "crit_vals4": 22, "crit_args4": 22, "crit_params4": 22, "mu_mesh4": 22, "sig_mesh4": 22, "crit_smm4_2": 22, "smm4": 22, "decreas": 22, "substanti": 22, "d_err4_2": 22, "sighat4_2": 22, "07668112": 22, "01934298": 22, "53697411": 22, "47391182": 22, "77184156": 22, "8806844791000032": 22, "3311053920876743": 22, "fewer": 22, "orthogon": 22, "mm": 22, "regard": 22, "verif": 22, "infinit": 22, "artistri": 22, "stori": 22, "auxiliari": 22, "x_t": 22, "z_t": 22, "_t": 22, "stastic": 22, "indirectli": 22, "logit": 22, "tractabl": 22, "wald": 22, "ratio": 22, "k_t": 22, "y_t": 22, "newmacroseri": 22, "quarterli": 22, "k_": 22, "rho": 22, "z_": 22, "varepsilon_t": 22, "aggreg": 22, "depreci": 22, "rest": 22, "k_1": 22, "fil": 22, "shock": 22, "todai": 22, "straightforward": 22, "z_0": 22, "w_": 22, "textbf": 22, "optimum": 22, "appendix": 22, "promin": 23, "classic": 23, "bias": 23, "cite": 23, "thesi": 23, "refut": 23, "temper": 23, "undergradut": 23, "syllabi": 23, "slide": 23, "winter": 23}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"refer": 0, "appendix": 1, "truncat": [1, 22], "normal": [1, 22], "distribut": 1, "footnot": [1, 3, 4, 5, 7, 8, 10, 12, 13, 15, 16, 20, 21, 22, 23], "glossari": 2, "basic": [3, 5, 8], "empir": 3, "method": [3, 9, 20, 22], "literatur": 3, "correl": 3, "versu": [3, 4], "causat": 3, "data": [3, 4, 23], "descript": 3, "cross": 3, "tabul": 3, "understand": 3, "linear": [3, 4, 16], "regress": [3, 4], "exampl": [3, 4, 16, 22], "acemoglu": 3, "et": 3, "al": 3, "2001": 3, "what": 3, "do": 3, "coeffici": [3, 4], "standard": [3, 17], "error": 3, "mean": 3, "interpret": [3, 4], "result": 3, "output": [3, 11], "analysi": 3, "varianc": [3, 22], "anova": 3, "f": 3, "test": [3, 6, 18, 22], "log": [3, 4], "likelihood": [3, 4, 21], "infer": [3, 22], "individu": 3, "paramet": 3, "predict": 3, "valu": 3, "extens": [3, 13], "exercis": [3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "multipl": 3, "logist": 4, "model": [4, 22, 23], "quantit": 4, "qualit": 4, "The": [4, 22], "classif": 4, "set": 4, "classifi": 4, "probabl": 4, "lp": 4, "logit": 4, "nonlinear": 4, "least": 4, "squar": 4, "estim": [4, 20, 21, 22, 23], "maximum": [4, 21], "titan": 4, "odd": 4, "ratio": 4, "multinomi": 4, "machin": [5, 8], "learn": [5, 7], "contributor": 6, "guid": 6, "creat": [6, 8], "an": 6, "issu": 6, "pull": [6, 8], "request": [6, 8], "automat": 6, "peer": 6, "review": 6, "project": 6, "version": 6, "track": 6, "patch": 6, "bump": 6, "3rd": 6, "digit": 6, "updat": [6, 8], "minor": 6, "major": 6, "neural": 7, "net": 7, "deep": 7, "git": 8, "github": [8, 18], "brief": 8, "definit": 8, "repositori": [8, 9], "wide": 8, "usag": 8, "fork": 8, "clone": 8, "your": 8, "local": 8, "main": 8, "master": 8, "branch": 8, "develop": 8, "make": 8, "chang": 8, "ad": 8, "commit": 8, "push": 8, "remot": 8, "submit": 8, "from": 8, "resolv": 8, "merg": 8, "conflict": 8, "cheat": 8, "sheet": 8, "comput": 9, "economist": 9, "us": [9, 19], "python": [9, 17, 19], "tutori": 9, "site": 9, "function": 9, "associ": 9, "compon": 9, "cite": 9, "thi": 9, "book": [9, 10], "docstr": 10, "document": 10, "eagleson": 10, "s": 10, "law": 10, "program": [10, 14], "guido": 10, "van": 10, "rossum": 10, "clear": 10, "code": [10, 18, 22], "inlin": 10, "comment": 10, "readm": 10, "file": [10, 11], "jupyt": 10, "notebook": 10, "cloud": 10, "other": 10, "publish": 10, "documentaiton": 10, "except": 11, "handl": 11, "input": 11, "matplotlib": 12, "option": [12, 19], "anim": 12, "3d": 12, "nad": 12, "numpi": 13, "futur": 13, "path": 13, "object": 14, "orient": 14, "panda": 15, "scipi": 16, "root": 16, "find": 16, "minim": 16, "interpol": 16, "theori": 16, "system": 16, "rank": 16, "identif": [16, 22], "problem": [16, 22], "wisdom": 16, "simpl": 16, "numer": 16, "og": 16, "core": 16, "equat": 16, "algebra": 16, "vs": 16, "finder": 16, "librari": 17, "unit": 18, "pytest": 18, "coverag": 18, "continu": 18, "integr": 18, "action": 18, "introduct": [19, 23], "overview": 19, "instal": 19, "work": 19, "packag": 19, "train": 19, "topic": 19, "unix": 19, "shell": 19, "command": 19, "gener": [20, 22, 23], "moment": [20, 22], "simul": 22, "smm": 22, "weight": 22, "matrix": 22, "w": 22, "ident": 22, "i": 22, "two": 22, "step": 22, "covari": 22, "iter": 22, "newei": 22, "west": 22, "consist": 22, "omega": 22, "hat": 22, "theta": 22, "fit": 22, "intermedi": 22, "macroeconom": 22, "score": 22, "optim": 22, "four": 22, "brock": 22, "mirman": 22, "1972": 22, "indirect": 22, "restat": 22, "hypothesi": 22, "structur": 23, "exogen": 23, "variabl": 23, "endogen": 23, "process": 23, "dgp": 23, "reduc": 23, "form": 23, "calibr": 23, "differ": 23, "type": 23, "persuas": 23, "short": 23, "paper": 23}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["CompMethods_references", "appendix/appendix", "appendix/glossary", "basic_empirics/BasicEmpirMethods", "basic_empirics/LogisticReg", "basic_ml/ml_intro", "contrib/contributing", "deep_learn/intro", "git/intro", "index", "python/DocStrings", "python/ExceptionsIO", "python/Matplotlib", "python/NumPy", "python/OOP", "python/Pandas", "python/SciPy", "python/StandardLibrary", "python/UnitTesting", "python/intro", "struct_est/GMM", "struct_est/MaxLikelihood", "struct_est/SMM", "struct_est/intro"], "filenames": ["CompMethods_references.md", "appendix/appendix.md", "appendix/glossary.md", "basic_empirics/BasicEmpirMethods.md", "basic_empirics/LogisticReg.md", "basic_ml/ml_intro.md", "contrib/contributing.md", "deep_learn/intro.md", "git/intro.md", "index.md", "python/DocStrings.md", "python/ExceptionsIO.md", "python/Matplotlib.md", "python/NumPy.md", "python/OOP.md", "python/Pandas.md", "python/SciPy.md", "python/StandardLibrary.md", "python/UnitTesting.md", "python/intro.md", "struct_est/GMM.md", "struct_est/MaxLikelihood.md", "struct_est/SMM.md", "struct_est/intro.md"], "titles": ["References", "Appendix", "Glossary", "12. Basic Empirical Methods", "13. Logistic Regression Model", "14. Basic Machine Learning", "Contributor Guide", "15. Neural Nets and Deep Learning", "11. Git and GitHub", "Computational Methods for Economists using Python", "9. Docstrings and Documentation", "3. Exception Handling and File Input/Output", "7. Matplotlib", "5. NumPy", "4. Object Oriented Programming", "6. Pandas", "8. SciPy: Root finding, minimizing, interpolation", "2. Python Standard Library", "10. Unit Testing", "1. Introduction to Python", "18. Generalized Method of Moments Estimation", "17. Maximum Likelihood Estimation", "19. Simulated Method of Moments Estimation", "16. Introduction to Structural Estimation"], "terms": {"ajr01": 0, "daron": [0, 3], "acemoglu": 0, "simon": 0, "johnson": 0, "jame": [0, 3], "A": [0, 2, 3, 4, 8, 10, 12, 13, 14, 15, 16, 22, 23], "robinson": 0, "The": [0, 1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23], "coloni": [0, 3], "origin": [0, 3, 6, 8, 9, 10, 15, 16, 18, 22], "compar": [0, 3, 16, 22, 23], "develop": [0, 2, 3, 9, 13, 15, 19, 22, 23], "an": [0, 2, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22], "empir": [0, 4, 22], "investig": [0, 3], "american": [0, 3, 9], "econom": [0, 2, 3, 9, 14, 19, 23], "review": [0, 2, 3, 8, 10], "91": [0, 3], "5": [0, 3, 4, 12, 13, 14, 15, 16, 17, 22, 23], "1369": 0, "1401": 0, "decemb": 0, "2001": [0, 10], "url": [0, 4, 8, 15, 22], "http": [0, 2, 3, 4, 8, 9, 10, 12, 13, 15, 16, 19, 22], "www": [0, 3, 4, 19], "aeaweb": 0, "org": [0, 2, 3, 9, 12, 13, 15, 16, 19], "articl": [0, 10, 15], "id": [0, 2, 19], "10": [0, 3, 4, 10, 16, 17, 18, 22], "1257": 0, "aer": 0, "ac03": 0, "j": [0, 3, 4], "\u00e9": [0, 22], "r": [0, 3, 4, 10, 15, 16, 22], "\u00f4": 0, "me": 0, "adda": [0, 22], "russel": 0, "cooper": [0, 22], "dynam": [0, 2, 12, 16, 19, 23], "quantit": [0, 3], "method": [0, 2, 4, 6, 8, 11, 13, 14, 15, 16], "applic": [0, 2, 19, 22], "mit": [0, 10], "press": 0, "2003": [0, 22], "abh23": 0, "robert": 0, "c": [0, 3, 4, 8, 10, 16], "allen": [0, 3], "mattia": 0, "bertazzini": [0, 3], "leander": 0, "heldr": [0, 3], "govern": [0, 3], "113": [0, 3], "2507": 0, "2545": 0, "octob": [0, 3, 8], "2023": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19], "20201919": 0, "acf": 0, "20": [0, 4, 22], "orazio": 0, "attanasio": [0, 23], "sarah": 0, "cattan": 0, "emla": 0, "fitzsimon": 0, "costa": 0, "meghir": 0, "marta": 0, "rubio": 0, "codina": 0, "estim": [0, 2, 3, 5, 9], "product": [0, 6, 13, 22], "function": [0, 1, 2, 3, 4, 5, 6, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 22, 23], "human": 0, "capit": [0, 10, 15, 16, 22], "result": [0, 13, 15, 18, 22], "from": [0, 1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "random": [0, 1, 3, 22, 23], "control": [0, 2, 3, 8, 9, 19, 22, 23], "trial": [0, 3, 23], "colombia": 0, "110": 0, "1": [0, 1, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "48": [0, 3, 22], "85": [0, 3, 8, 22], "januari": 0, "2020": [0, 2, 8, 9, 16, 22, 23], "pub": 0, "doi": 0, "pdfplu": 0, "20150183": 0, "bmm19": 0, "martha": 0, "bailei": [0, 23], "olga": 0, "malkova": 0, "zo": 0, "\u00eb": 0, "m": [0, 3, 8, 22], "mclaren": 0, "doe": [0, 4, 10, 11, 13, 16, 19, 22], "access": [0, 2, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19], "famili": [0, 14], "plan": 0, "increas": [0, 3, 4, 18, 22], "children": [0, 4], "s": [0, 2, 3, 4, 8, 9, 11, 12, 13, 14, 15, 16, 19, 22], "opportun": [0, 9], "evid": [0, 23], "war": 0, "poverti": 0, "earli": [0, 10], "year": [0, 3, 8, 12, 14, 15, 16, 22], "titl": [0, 3, 4, 6, 12, 22], "x": [0, 1, 2, 3, 4, 5, 16, 22, 23], "journal": 0, "resourc": [0, 2, 3, 10, 16, 19], "54": 0, "4": [0, 3, 4, 10, 11, 12, 13, 14, 15, 16, 22], "825": 0, "856": [0, 22], "fall": 0, "2019": [0, 9, 23], "jhr": 0, "uwpress": 0, "content": [0, 2, 6, 9, 13, 20, 21, 22, 23], "bs12": 0, "barski": [0, 23], "sim": [0, 22, 23], "inform": [0, 2, 3, 4, 6, 8, 10, 11, 16, 19, 22], "anim": 0, "spirit": 0, "mean": [0, 1, 4, 6, 10, 12, 16, 22], "innov": [0, 13], "consum": [0, 16], "confid": [0, 3], "102": 0, "1343": 0, "1377": 0, "june": [0, 8], "2012": [0, 9, 22, 23], "bm72": 0, "william": 0, "brock": [0, 16], "leonard": 0, "mirman": [0, 16], "optim": [0, 2, 3, 13, 16, 18, 19, 23], "growth": [0, 8, 9, 15], "uncertainti": 0, "discount": [0, 10, 14, 16], "case": [0, 3, 4, 5, 6, 8, 11, 15, 16, 22, 23], "theori": [0, 23], "3": [0, 3, 4, 11, 12, 13, 14, 15, 16, 19, 22], "479": 0, "513": 0, "1972": [0, 16], "dm04": 0, "davidson": [0, 22], "g": [0, 2, 3, 16, 17, 18, 19, 22, 23], "mackinnon": [0, 22], "econometr": [0, 2, 15, 23], "oxford": 0, "univers": [0, 2, 9, 23], "2004": [0, 3, 22], "ds93": 0, "darrel": 0, "duffi": [0, 22], "kenneth": 0, "singleton": [0, 22], "simul": [0, 2, 23], "moment": [0, 3, 4], "markov": 0, "model": [0, 2, 3, 5, 6, 9, 10, 14, 16, 19], "asset": 0, "price": 0, "econometrica": 0, "61": [0, 3], "929": 0, "952": 0, "juli": 0, "1993": [0, 22], "ep17": 0, "richard": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "w": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "evan": [0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "kerk": 0, "l": [0, 3, 4, 16, 22], "phillip": [0, 16], "advantag": [0, 13], "ellips": 0, "when": [0, 4, 10, 11, 13, 14, 16, 18, 22], "leisur": 0, "util": [0, 16], "comput": [0, 2, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "51": 0, "533": 0, "march": 0, "2017": [0, 3, 16, 23], "fri21": 0, "lex": [0, 13], "fridman": [0, 13], "travi": [0, 13], "oliph": [0, 13], "numpi": [0, 3, 4, 10, 15, 16, 18, 19, 22], "scipi": [0, 3, 13, 18, 19, 22], "anaconda": [0, 13, 19], "python": [0, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 18], "scientif": [0, 13, 16, 19], "program": [0, 2, 8, 11, 13, 15, 16, 17, 19, 23], "podcast": [0, 13], "224": 0, "septemb": [0, 8, 13, 19], "22": [0, 4, 13], "2021": [0, 8, 13, 15], "youtu": 0, "gfee3w7f0ww": 0, "si": 0, "xkcrlcw7fxka9oxb": 0, "git22": 0, "github": [0, 2, 3, 6, 9, 10, 19, 22, 23], "octovers": [0, 8], "2022": [0, 8, 9, 19], "state": [0, 4, 8, 9, 16, 22], "open": [0, 2, 6, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "sourc": [0, 2, 4, 8, 9, 10, 13, 15, 18, 19], "softwar": [0, 2, 8, 10, 13], "report": [0, 3, 8, 15, 18, 22], "inc": [0, 2, 9, 13], "novemb": [0, 8], "17": [0, 8, 22], "com": [0, 2, 3, 4, 8, 15, 22], "gvanrossum01": 0, "david": 0, "goodger": [0, 10], "guido": 0, "van": 0, "rossum": 0, "pep": [0, 10], "257": [0, 4, 10], "d": [0, 3, 22], "ocstr": 0, "convent": [0, 10], "enhanc": [0, 10], "propos": [0, 10, 16], "steer": 0, "council": 0, "mai": [0, 6, 16, 19], "29": [0, 3, 4], "0257": 0, "gm96": 0, "christian": 0, "gourieroux": [0, 22], "alain": 0, "monfort": [0, 22], "base": [0, 2, 3, 4, 8, 13, 18, 22], "1996": [0, 22], "hj20": 0, "jeffrei": 0, "humpheri": [0, 16], "tyler": 0, "jarvi": [0, 16], "foundat": [0, 8, 9, 13], "appli": [0, 2, 4, 9, 14, 16, 19], "mathemat": [0, 2, 4, 13, 16, 19, 23], "algorithm": [0, 13, 16], "approxim": [0, 2, 4, 22, 23], "volum": 0, "2": [0, 1, 3, 4, 10, 12, 13, 14, 15, 16, 17, 19, 22], "siam": 0, "societi": 0, "industri": 0, "jwht17": 0, "gareth": [0, 3], "daniela": 0, "witten": 0, "trevor": 0, "hasti": 0, "tibshirani": 0, "introduct": [0, 3, 4, 10, 12, 13, 15], "statist": [0, 3, 4, 5, 8, 15, 16, 22], "learn": [0, 2, 3, 8, 9, 13, 16, 19, 23], "springer": 0, "text": [0, 1, 2, 4, 6, 10, 11, 16, 17, 19, 22, 23], "jud98": 0, "judd": [0, 16], "numer": [0, 3, 4, 13, 15, 19, 22], "1998": [0, 16], "kea10": 0, "michael": 0, "p": [0, 3, 4, 16, 22], "kean": [0, 23], "structur": [0, 2, 5, 9, 10, 19], "vs": [0, 2, 8, 17, 19, 22], "atheoret": [0, 2, 23], "approach": [0, 2, 6, 16, 22, 23], "156": 0, "2010": [0, 15, 23], "lsalanie93": 0, "laroqu": [0, 22], "b": [0, 3, 8, 13, 16, 18, 22], "salani": [0, 22], "lag": 0, "latent": [0, 22], "variabl": [0, 1, 2, 3, 4, 5, 10, 15, 16, 22], "8": [0, 3, 4, 10, 14, 15, 16, 18, 19, 22], "supplement": 0, "119": [0, 3], "133": 0, "li91": 0, "bong": 0, "soo": 0, "lee": [0, 22], "beth": 0, "fisher": 0, "ingram": [0, 22], "time": [0, 2, 3, 4, 8, 10, 11, 13, 14, 16, 18, 19, 22, 23], "seri": [0, 2, 3, 15, 22, 23], "47": [0, 3], "197": [0, 22], "205": 0, "februari": 0, "1991": [0, 22], "mcf89": 0, "daniel": 0, "mcfadden": [0, 22], "discret": [0, 4], "respons": 0, "without": [0, 2, 4, 10, 16, 19], "integr": [0, 2, 8, 16, 22], "57": [0, 3], "995": 0, "1026": 0, "1989": [0, 22], "mer23": 0, "mertz": [0, 10], "document": [0, 2, 3, 6, 8, 15, 16, 17, 18, 19, 22], "code": [0, 2, 3, 4, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19], "complet": [0, 2, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "guid": [0, 9, 10], "tutori": [0, 3, 10, 19], "realpython": [0, 10], "onlin": [0, 3, 8, 9, 15, 17, 22], "08": [0, 13, 22], "nw87": 0, "whitnei": 0, "k": [0, 3, 4, 16, 22], "newei": 0, "west": 0, "simpl": [0, 3, 15, 18, 19, 22], "posit": [0, 3, 16, 22], "semi": 0, "definit": [0, 2, 5, 10, 14, 16, 22, 23], "heteroskedastici": 0, "autocorrel": [0, 22], "consist": [0, 10, 14, 19], "covari": [0, 3], "matrix": [0, 3, 13, 16], "55": [0, 3, 15], "703": 0, "708": 0, "1987": [0, 10, 22, 23], "rus87": 0, "john": 0, "rust": [0, 23], "replac": [0, 3, 4], "gmc": 0, "bu": 0, "engin": [0, 3, 13], "harold": 0, "zurcher": 0, "999": 0, "1033": [0, 22], "jstor": 0, "stabl": [0, 3, 15, 19], "1911259": 0, "rus10": 0, "comment": 0, "21": 0, "24": [0, 3, 4, 15, 22], "ss23a": 0, "thoma": 0, "sargent": [0, 3], "stachurski": [0, 3], "linear": [0, 2, 13, 19, 22, 23], "regress": [0, 5, 22], "In": [0, 2, 3, 4, 6, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 22], "quantecon": [0, 3, 19], "lectur": [0, 3, 9, 20, 21, 23], "first": [0, 3, 4, 6, 10, 13, 14, 15, 16, 19, 22], "cours": [0, 9, 20, 21, 22, 23], "With": [0, 15, 22], "chapter": [0, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "36": [0, 15, 22], "intro": [0, 1, 5, 7, 19], "simple_linear_regress": 0, "html": [0, 3, 10, 15], "ss23b": 0, "ol": [0, 3], "intermedi": 0, "79": 0, "smi20": 0, "anthoni": 0, "jr": 0, "smith": [0, 22], "indirect": 0, "infer": [0, 5], "matia": 0, "vernengo": 0, "esteban": 0, "perez": 0, "caldentei": 0, "barklei": 0, "rosser": 0, "editor": [0, 2, 17, 19], "new": [0, 2, 3, 4, 6, 8, 13, 14, 15, 16, 18, 22], "palgrav": 0, "dictionari": [0, 13, 14, 15, 22], "macmillan": 0, "econ": [0, 22], "yale": 0, "edu": [0, 3], "palgrave7": 0, "pdf": [0, 3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 22], "sta23": 0, "stackscal": [0, 19], "most": [0, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "popular": [0, 12, 13], "languag": [0, 8, 10, 13, 14, 15, 17, 19], "grupo": 0, "air": 0, "13": [0, 3, 4, 15, 16], "blog": [0, 4, 8, 13], "top_10_programming_languages_in_2023": 0, "sw20": 0, "ludwig": 0, "straub": [0, 23], "iv": [0, 16, 22], "\u00e1": 0, "n": [0, 3, 4, 16, 17, 22], "wern": [0, 23], "long": [0, 8, 10, 15, 16], "run": [0, 6, 8, 10, 17, 18, 19, 22], "taxat": 0, "chamlei": 0, "revisit": [0, 22], "86": 0, "20150210": 0, "wal20": 0, "jack": 0, "wallen": [0, 8], "master": [0, 9, 13, 18, 23], "main": [0, 2, 3, 4, 6, 10, 15, 22], "start": [0, 3, 8, 10, 13, 16, 22, 23], "what": [0, 4, 6, 10, 11, 12, 13, 15, 16, 18, 19, 22], "need": [0, 3, 4, 10, 13, 14, 15, 16, 18, 19, 22], "do": [0, 4, 10, 11, 12, 13, 15, 16, 19, 22], "now": [0, 3, 4, 8, 13, 15, 16, 17, 18, 22], "technic": 0, "techrepubl": 0, "know": [0, 4, 16, 18, 22], "byuacme23a": 0, "byu": [0, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "acm": [0, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "advanc": [0, 5, 9, 13, 15, 16, 19, 23], "2024": 0, "incom": [0, 3, 16], "senior": [0, 4, 9], "materi": [0, 9, 19, 23], "byuacme23b": 0, "3d": [0, 22], "plot": [0, 3, 4, 12, 15, 16, 19, 22], "matplotlib": [0, 3, 4, 16, 19, 22], "byuacme23c": 0, "except": [0, 6, 19], "file": [0, 2, 3, 6, 8, 9, 12, 13, 14, 15, 17, 18, 19, 22], "input": [0, 2, 10, 14, 16, 18, 19, 22, 23], "output": [0, 2, 6, 15, 16, 18, 19, 23], "junior": 0, "7": [0, 3, 4, 8, 12, 13, 15, 16, 19, 22], "byuacme23d": 0, "6": [0, 3, 4, 12, 15, 16, 18, 22], "byuacme23": 0, "byuacme23f": 0, "byuacme23g": 0, "object": [0, 2, 3, 4, 10, 13, 15, 17, 18, 19, 22], "orient": [0, 19], "byuacme23h": 0, "panda": [0, 3, 4, 12, 19], "byuacme23i": 0, "byuacme23j": 0, "group": [0, 3, 8, 9, 12, 14, 15], "byuacme23k": 0, "standard": [0, 10, 19, 22], "librari": [0, 3, 13, 19, 22], "byuacme23l": 0, "unit": [0, 2, 4, 8, 15, 16, 19, 22], "test": [0, 2, 8, 9, 15, 16, 19, 23], "byuacme23m": 0, "unix": 0, "shell": 0, "vanrossumwc01": 0, "barri": 0, "warsaw": 0, "nick": 0, "coghlan": 0, "tyle": 0, "0008": 0, "wikipediacontributors20a": 0, "wikipedia": [0, 2, 8, 13, 14, 15], "contributor": [0, 2, 8, 9, 13, 14, 15], "ikipedia": 0, "free": [0, 2, 19], "encyclopedia": 0, "19": [0, 22], "august": 0, "en": [0, 10], "wiki": 0, "git": [0, 2, 19], "wikipediacontributors20b": 0, "i": [0, 3, 4, 13, 15, 16, 20, 21, 23], "ntegrat": 0, "environ": [0, 2, 6, 8], "integrated_development_environ": 0, "wikipediacontributors23a": 0, "t": [0, 3, 4, 10, 11, 13, 16, 22], "axonom": 0, "rank": [0, 14, 19], "04": [0, 22], "taxonomic_rank": 0, "wikipediacontributors23b": 0, "ravi": 0, "o": [0, 22], "liphant": 0, "travis_oliph": 0, "wikipediacontributors23c": 0, "anda": 0, "pandas_": 0, "put": [1, 2, 4, 5, 7, 10, 19, 22, 23], "here": [1, 2, 4, 5, 7, 10, 12, 13, 18, 19, 23], "paramet": [1, 2, 4, 5, 14, 16, 22, 23], "mu": [1, 3, 22], "sigma": [1, 10, 16, 22], "lower": [1, 3, 22], "bound": [1, 22], "cutoff": [1, 22], "c_": [1, 10, 16, 22], "lb": [1, 3, 22], "upper": [1, 8, 9, 22], "ub": [1, 22], "simpli": [1, 3, 16, 22], "valu": [1, 4, 8, 10, 13, 14, 15, 16, 18, 22], "defin": [1, 2, 4, 5, 13, 14, 16, 22], "onli": [1, 2, 3, 4, 6, 8, 9, 10, 14, 15, 16, 22, 23], "interv": [1, 3, 4], "rather": [1, 10, 22], "than": [1, 3, 4, 6, 8, 10, 13, 14, 15, 16, 22], "full": [1, 2, 9, 10, 12, 22], "real": [1, 4, 10, 16, 22], "line": [1, 2, 3, 4, 6, 10, 13, 15, 16, 17, 18, 19, 22], "And": [1, 3, 5, 8, 10, 11, 12, 13, 14, 16, 18, 19, 22], "probabl": [1, 3, 14, 18, 22], "ar": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "upweight": 1, "less": [1, 4, 12, 16, 22], "one": [1, 2, 3, 4, 10, 12, 13, 14, 15, 16, 18, 19, 22, 23], "under": [1, 2, 16], "quad": [1, 3, 4, 16, 22, 23], "f": [1, 4, 5, 16, 22], "frac": [1, 4, 16, 22], "phi": [1, 22], "where": [1, 2, 3, 4, 10, 13, 15, 16, 22, 23], "equiv": [1, 4, 16, 22], "sqrt": [1, 22], "pi": [1, 9, 22], "e": [1, 3, 4, 8, 13, 15, 16, 17, 18, 19, 22], "int_": 1, "infti": [1, 4, 16, 22], "dx": 1, "varianc": 1, "cummul": 1, "thi": [1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "interfac": [2, 10], "api": [2, 3, 6, 10, 13], "medium": 2, "rule": [2, 3], "through": [2, 3, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "which": [2, 3, 4, 8, 10, 12, 13, 14, 16, 18, 19, 22, 23], "user": [2, 6, 8, 19], "interact": [2, 8, 10, 19], "includ": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "can": [2, 3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "command": [2, 3, 6, 8, 17], "specif": [2, 3, 4, 14, 16, 22], "local": [2, 3, 4, 6, 10], "termin": [2, 6, 8, 19, 22], "graphic": 2, "also": [2, 3, 4, 6, 8, 10, 14, 15, 16, 19, 20, 21, 22], "benevol": 2, "dictat": [2, 22], "todo": [2, 4, 10], "make": [2, 3, 4, 5, 6, 10, 11, 13, 14, 18, 19, 22, 23], "entri": [2, 4, 8, 10], "bitbucket": [2, 8], "cloud": [2, 3, 4, 6, 8], "manag": [2, 8, 15, 19], "servic": [2, 8, 19], "platform": [2, 8, 9, 19], "design": [2, 8, 16, 23], "enabl": [2, 8], "scalabl": [2, 8, 14], "effici": [2, 8, 14, 22], "secur": [2, 8], "version": [2, 3, 8, 9, 19, 20, 21, 22, 23], "collabor": [2, 8, 9, 10, 13, 18], "link": [2, 8, 19], "bitkeep": 2, "box": [2, 4, 8], "share": [2, 10, 16], "compani": [2, 8], "branch": [2, 6, 18], "calibr": [2, 14, 16, 22], "central": 2, "system": [2, 8, 19, 22, 23], "cvc": 2, "all": [2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23], "repositori": [2, 3, 6, 10, 18, 19, 20, 21, 22, 23], "well": [2, 3, 6, 10, 15, 17, 18, 19, 22], "chang": [2, 4, 6, 9, 14, 15, 16, 22], "histori": [2, 8], "locat": [2, 3], "remot": 2, "server": [2, 10], "check": [2, 4, 14, 18], "out": [2, 3, 4, 22], "them": [2, 3, 8, 10, 11, 22], "back": [2, 16], "creat": [2, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17, 18, 22], "clone": 2, "verb": 2, "noun": 2, "context": [2, 5], "copi": [2, 3, 8, 18], "its": [2, 3, 4, 10, 12, 13, 16, 22, 23], "entir": 2, "distribut": [2, 3, 4, 8, 13, 17, 19, 22], "To": [2, 3, 4, 6, 8, 15, 18, 22], "us": [2, 3, 4, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23], "repo": [2, 8], "path": [2, 9, 17], "your": [2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23], "machin": [2, 3, 6, 10, 13, 19, 23], "accompani": [2, 12, 20, 21], "descriptor": 2, "As": [2, 3, 4, 10, 16, 18, 19, 22], "refer": [2, 3, 4, 6, 19, 22, 23], "via": [2, 6, 10], "internet": [2, 8, 10, 19], "storag": 2, "gener": [2, 3, 4, 9, 10, 12, 14, 16, 18], "cli": 2, "commit": [2, 6], "continu": [2, 4, 8], "data": [2, 6, 9, 12, 13, 15, 16, 17, 19, 20, 21, 22], "process": [2, 11, 13, 22], "dgp": [2, 22], "broadest": [2, 23], "descript": [2, 4, 6, 10, 11, 15, 19, 22, 23], "mechan": [2, 23], "caus": [2, 3, 23], "some": [2, 3, 4, 5, 8, 9, 10, 12, 13, 15, 16, 18, 19, 22, 23], "observ": [2, 3, 4, 10, 15, 16, 22, 23], "phenomenon": [2, 23], "depend": [2, 3, 4, 5, 16, 22, 23], "unfortun": [2, 23], "realist": [2, 23], "too": [2, 4, 22, 23], "complex": [2, 23], "more": [2, 3, 4, 8, 9, 10, 13, 14, 15, 16, 18, 19, 22, 23], "practic": [2, 19, 23], "simplifi": [2, 22, 23], "kei": [2, 6, 15, 16, 22, 23], "concept": [2, 23], "veri": [2, 3, 4, 10, 19, 22, 23], "similar": [2, 3, 4, 15, 22, 23], "characterist": [2, 4, 14, 22, 23], "must": [2, 4, 6, 16, 22, 23], "specifi": [2, 3, 8, 14, 16, 18, 23], "wai": [2, 3, 4, 10, 13, 14, 16, 18, 19, 22, 23], "could": [2, 3, 4, 5, 10, 13, 18, 22, 23], "dvc": [2, 8], "ani": [2, 3, 4, 6, 10, 16, 18, 22], "track": [2, 8, 15], "coordin": 2, "organ": [2, 8, 9, 19, 23], "among": [2, 8, 16, 23], "multipl": [2, 9, 13, 18, 22], "It": [2, 3, 4, 8, 10, 15, 16, 22], "sens": [2, 4, 10], "singl": [2, 15, 16], "have": [2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 19, 22], "same": [2, 3, 4, 10, 12, 13, 14, 16, 19, 22], "dropbox": 2, "endogen": [2, 3, 4, 22], "exogen": [2, 4, 16, 22], "These": [2, 3, 6, 8, 9, 10, 13, 16, 17, 18, 22, 23], "portion": [2, 22, 23], "sometim": [2, 11, 23], "y": [2, 3, 5, 16, 22, 23], "theta": [2, 4, 5, 23], "taken": [2, 8, 23], "given": [2, 3, 4, 16, 22, 23], "outsid": [2, 22, 23], "both": [2, 4, 13, 15, 16, 22, 23], "fork": [2, 6], "capabl": [2, 11, 15, 19], "oper": [2, 13, 15, 19], "resid": [2, 3, 8], "directori": [2, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22], "see": [2, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "websit": [2, 8, 10, 12, 13, 15, 16], "scm": [2, 8], "busi": [2, 8], "footprint": [2, 8], "host": [2, 8, 10], "collect": [2, 8, 10], "million": [2, 8], "addit": [2, 4, 6, 8, 10, 17, 18, 19, 22], "being": [2, 3, 4, 8, 22], "primari": [2, 8, 13, 15, 16, 18], "featur": [2, 4, 6, 8, 10, 19], "project": [2, 8, 9, 10, 13, 15, 19, 22], "action": [2, 6, 8], "associ": [2, 6, 8, 11, 16, 19, 22], "web": [2, 8], "page": [2, 3, 6, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 23], "deploy": [2, 8], "gitlab": [2, 8], "googl": [2, 3, 4, 10], "doc": [2, 3, 15, 19], "drive": [2, 15], "gui": [2, 3], "comsolid": 2, "mani": [2, 3, 4, 10, 13, 14, 16, 19, 22], "often": [2, 4, 5, 10, 12, 15, 16, 22, 23], "memori": [2, 4], "identif": 2, "debugg": 2, "build": [2, 4, 6, 13, 14, 18], "autom": [2, 18], "tool": [2, 18], "linux": [2, 19], "write": [2, 3, 4, 10, 16, 17, 18, 19, 22, 23], "perform": [2, 13, 16, 22], "he": [2, 13], "she": 2, "ha": [2, 3, 4, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "direct": 2, "lvc": 2, "simplest": [2, 22], "common": [2, 3, 4, 10, 14, 17, 19, 22], "vc": 2, "store": [2, 3, 11, 12, 13, 14, 15, 17, 18, 19], "delta": 2, "appl": 2, "backup": 2, "undo": 2, "merg": [2, 6, 15, 18], "set": [2, 3, 10, 14, 16, 18, 22, 23], "effect": [2, 3, 4, 5, 16, 18, 23], "relationship": [2, 3, 4, 16, 23], "understand": [2, 10, 16, 18, 22, 23], "explain": [2, 3, 16, 23], "predict": [2, 4, 5, 10, 23], "phenomena": [2, 23], "might": [2, 3, 10, 14, 16, 18, 22, 23], "0": [2, 3, 4, 6, 13, 14, 16, 17, 22, 23], "vector": [2, 3, 4, 16, 22, 23], "repres": [2, 3, 4, 8, 12, 13, 14, 15, 16, 22, 23], "between": [2, 3, 4, 8, 9, 10, 14, 15, 22, 23], "og": [2, 8, 10, 12, 14, 15, 18], "core": [2, 4, 8, 9, 10, 12, 14, 18], "larg": [2, 8, 10, 13, 15, 16, 22], "scale": [2, 3, 22], "overlap": [2, 5, 9, 16], "macroeconom": [2, 9, 14, 16], "fiscal": [2, 13], "polici": [2, 3, 9], "countri": [2, 3, 12, 14, 15, 16], "usa": [2, 3, 15], "usual": [2, 3, 8, 10, 14, 22], "upon": [2, 14, 18], "digit": [2, 18], "freeli": [2, 19], "avail": [2, 3, 9, 19, 22], "download": [2, 3, 4, 9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "improv": [2, 9, 10, 16, 22], "encourag": [2, 19], "outward": 2, "aspect": 2, "emphas": [2, 19, 22], "But": [2, 3, 4, 8, 13, 16, 18, 22, 23], "contribut": [2, 6, 8, 18, 22], "inward": 2, "least": [2, 3, 10, 16, 22, 23], "import": [2, 3, 4, 10, 14, 16, 18, 19, 22], "degre": [2, 3, 12, 13], "seen": [2, 22], "other": [2, 3, 4, 5, 6, 8, 11, 12, 13, 16, 18, 19, 22, 23], "workflow": [2, 6, 8, 19], "pull": [2, 9, 18], "request": [2, 9, 18, 22], "reduc": [2, 4, 16, 18, 19, 22], "form": [2, 4, 8, 9, 10, 13, 14, 16, 19, 22], "equat": [2, 3, 4, 10, 13, 22, 23], "either": [2, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23], "deriv": [2, 15, 16, 22, 23], "behavior": [2, 23], "implicitli": [2, 23], "complic": [2, 8, 23], "howev": [2, 3, 5, 8, 9, 10, 13, 16, 19, 22, 23], "becaus": [2, 4, 12, 13, 16, 19, 22, 23], "thei": [2, 4, 5, 6, 8, 10, 13, 16, 19, 22, 23], "nonparametr": [2, 5, 23], "categor": [2, 3, 4, 23], "static": [2, 3, 12, 23], "although": [2, 4, 16, 22, 23], "carri": 2, "contain": [2, 3, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19], "provid": [2, 3, 4, 6, 10, 14, 16, 18, 19], "hub": 2, "lead": [2, 8], "exampl": [2, 6, 8, 10, 19], "individu": [2, 13, 16, 23], "firm": [2, 10, 15, 23], "nonlinear": [2, 3, 5, 16, 22, 23], "record": [2, 4, 16], "order": [2, 4, 10, 14, 22], "were": [2, 3, 6, 8, 12, 14], "made": [2, 8], "those": [2, 4, 6, 10, 13, 15, 16, 19], "previou": [2, 3, 13, 16, 22], "recal": [2, 22], "restor": 2, "visual": [2, 3, 4, 12, 19], "studio": [2, 19], "maintain": [2, 6, 8, 9, 10, 13], "microsoft": 2, "execut": [3, 4, 8, 9, 16, 19, 22], "colab": [3, 4, 10], "notebook": [3, 4, 12, 15, 17, 18, 19, 20, 21, 22, 23], "imag": [3, 4, 8, 9, 12, 20, 21, 22], "allow": [3, 4, 10, 13, 14, 16, 19, 22], "you": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "so": [3, 4, 10, 12, 14, 15, 16, 18, 22], "don": [3, 4, 11, 22], "packag": [3, 4, 6, 9, 10, 12, 13, 15, 16, 18, 22], "manipul": [3, 4, 15], "devic": [3, 4], "browser": [3, 4, 8, 10], "whether": [3, 4], "phone": [3, 4], "tablet": [3, 4], "focu": [3, 4, 13], "give": [3, 4, 6, 8, 10, 15, 16, 22], "reader": [3, 4], "scienc": [3, 9, 16, 19, 22, 23], "want": [3, 4, 6, 8, 11, 15, 16, 18, 19, 22], "each": [3, 4, 9, 10, 12, 13, 14, 15, 16, 19, 22, 23], "come": [3, 4, 5, 16, 19, 22], "awai": [3, 22], "follow": [3, 4, 6, 8, 9, 10, 13, 15, 16, 19, 22, 23], "skill": [3, 12, 13], "differ": [3, 4, 8, 13, 14, 16, 19, 22], "how": [3, 4, 6, 9, 12, 14, 16, 18, 22], "my": [3, 8, 15], "own": [3, 8, 10], "term": [3, 8, 9, 15], "quadrat": [3, 16, 22], "idea": [3, 12, 13], "behind": [3, 16], "bigger": [3, 18, 22], "instrument": 3, "omit": 3, "bia": 3, "logist": 3, "panel": [3, 15], "autoregress": [3, 22], "next": [3, 4, 10, 16, 22], "detail": [3, 6, 8, 9, 10, 16, 22], "treatment": [3, 22], "bridg": 3, "good": [3, 4, 6, 8, 10, 12, 16, 19, 22, 23], "topic": [3, 22], "current": [3, 8, 16, 19, 20, 21], "vol": 3, "No": [3, 4, 22], "tabl": [3, 8, 9, 15], "summari": [3, 19, 22], "eq": 3, "begin": [3, 4, 8, 13, 16, 22, 23], "y_": [3, 22], "sum_": [3, 4, 22], "left": [3, 4, 9, 13, 16, 22], "beta_k": [3, 4], "trmt": 3, "mathbf": 3, "_k": 3, "treated_c": 3, "right": [3, 4, 8, 9, 13, 16, 22], "rho_c": 3, "gamma_t": 3, "nu_": 3, "varepsilon_": [3, 22], "end": [3, 4, 13, 16, 18, 22, 23], "ifram": [3, 11, 12, 13, 14, 15, 17, 18, 19], "below": [3, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22], "thing": [3, 4, 22], "principl": 3, "third": [3, 4, 6, 10, 13], "problem": [3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "spuriou": 3, "direction": 3, "we": [3, 4, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 22], "determin": 3, "rct": [3, 23], "laboratori": [3, 9], "experi": [3, 16], "natur": [3, 4, 8, 22], "quasi": 3, "paper": [3, 10, 22], "spend": 3, "ink": 3, "summar": [3, 8], "describ": [3, 4, 8, 10, 11, 15, 16, 17, 22, 23], "done": [3, 13, 18, 19], "categori": [3, 4], "type": [3, 8, 10, 11, 13, 14, 16, 17, 18, 19, 22], "median": [3, 4], "count": [3, 4, 15, 22], "max": [3, 4], "min": [3, 4], "let": [3, 4, 8, 13, 14, 15, 16, 22], "read": [3, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "adapt": [3, 4, 6], "research": [3, 4, 8, 9, 16, 19, 23], "question": [3, 4, 6], "institut": [3, 9], "help": [3, 6, 8, 10, 15, 19, 22], "outcom": [3, 4], "measur": [3, 15, 22], "proxi": 3, "gdp": [3, 12, 15, 16, 22], "per": [3, 12, 14, 15, 22], "capita": [3, 12, 15], "1995": 3, "adjust": [3, 14, 16], "exchang": 3, "rate": [3, 4, 10, 14, 15, 16, 22], "index": [3, 4, 15, 22], "protect": [3, 18], "against": [3, 22, 23], "expropri": 3, "averag": [3, 4, 22], "over": [3, 13, 15, 16, 18, 22], "1985": 3, "95": 3, "construct": 3, "polit": 3, "risk": [3, 10, 16], "serivc": 3, "webpag": 3, "cell": [3, 10], "maketable1": 3, "dta": 3, "displai": 3, "five": [3, 4, 13, 16], "pd": [3, 4], "path_df1": 3, "opensourceecon": [3, 4, 9, 22], "compmethod": [3, 4, 6, 9, 22], "raw": [3, 4, 15, 22], "basic_empir": [3, 4], "df1": 3, "read_stata": 3, "datafram": [3, 4, 12, 15, 19], "head": [3, 4, 15], "return": [3, 4, 10, 13, 16, 18, 22], "forw": 3, "column": [3, 4, 13, 15, 22], "number": [3, 4, 6, 8, 13, 14, 16, 22], "default": [3, 15, 22], "shortnam": 3, "euro1900": 3, "excoloni": 3, "avexpr": 3, "logpgp95": 3, "cons1": 3, "cons90": 3, "democ00a": 3, "cons00a": 3, "extmort4": 3, "logem4": 3, "loghjypl": 3, "baseco": 3, "afg": 3, "000000": [3, 4], "nan": [3, 4], "93": 3, "699997": 3, "540098": 3, "ago": 3, "363636": 3, "770645": 3, "280": 3, "634789": 3, "411248": 3, "181818": 3, "9": [3, 4, 10, 13, 16, 22], "804219": 3, "arg": [3, 10, 22], "60": [3, 22], "000004": 3, "386364": 3, "133459": 3, "68": 3, "900002": 3, "232656": 3, "872274": 3, "arm": 3, "682482": 3, "dataset": [3, 4, 15, 22], "shape": [3, 4, 13, 22], "tupl": [3, 13, 22], "element": [3, 5, 13, 22], "row": [3, 13, 15, 22], "second": [3, 4, 6, 8, 10, 13, 14, 15, 16, 22], "163": 3, "print": [3, 4, 13, 14, 15, 16, 17, 22], "str": 3, "list": [3, 4, 8, 13, 15, 16], "len": 3, "uniqu": [3, 16], "163observ": 3, "au": 3, "aut": 3, "az": 3, "bdi": 3, "bel": 3, "ben": 3, "bfa": 3, "bgd": 3, "bgr": 3, "bhr": 3, "bh": 3, "bih": 3, "blr": 3, "blz": 3, "bol": 3, "bra": 3, "brb": 3, "btn": 3, "bwa": 3, "caf": 3, "che": 3, "chl": 3, "chn": 3, "civ": 3, "cmr": 3, "cog": 3, "col": 3, "cpv": 3, "cri": 3, "cze": 3, "deu": 3, "dji": 3, "dnk": 3, "dom": 3, "dza": 3, "ecu": 3, "egi": 3, "eri": 3, "esp": 3, "est": [3, 22], "eth": 3, "fin": 3, "fji": 3, "fra": 3, "gab": 3, "gbr": 3, "geo": 3, "gha": 3, "gin": 3, "gmb": 3, "gnb": 3, "grc": 3, "gtm": 3, "hkg": 3, "hnd": 3, "hrv": 3, "hti": 3, "hun": 3, "idn": 3, "ind": [3, 15], "irl": 3, "irn": 3, "irq": 3, "isl": 3, "isr": 3, "ita": 3, "jam": 3, "jor": 3, "jpn": 3, "kaz": 3, "ken": 3, "kgz": 3, "kor": 3, "kwt": 3, "lao": 3, "lbr": 3, "lby": 3, "lka": 3, "lso": 3, "ltu": 3, "lux": 3, "lva": 3, "mar": 3, "mda": 3, "mdg": 3, "mex": 3, "mkd": 3, "mli": 3, "mlt": 3, "mmr": 3, "mng": 3, "moz": 3, "mrt": 3, "mwi": 3, "nam": 3, "ner": 3, "nga": 3, "nic": 3, "nld": 3, "nor": [3, 10], "npl": 3, "nzl": 3, "omn": 3, "pak": 3, "pan": 3, "phl": 3, "png": 3, "pol": 3, "prk": 3, "prt": 3, "pry": 3, "qat": 3, "rom": 3, "ru": 3, "rwa": 3, "sau": 3, "sdn": 3, "sen": 3, "sgp": 3, "sle": 3, "slv": 3, "som": 3, "stp": 3, "sur": 3, "svk": 3, "svn": 3, "swe": 3, "swz": 3, "syr": 3, "tcd": 3, "tgo": 3, "tha": 3, "tjk": 3, "tkm": 3, "tto": 3, "tun": 3, "tur": 3, "twn": 3, "tza": 3, "uga": 3, "ukr": 3, "uri": 3, "uzb": 3, "ven": 3, "vnm": 3, "yem": 3, "yug": 3, "zaf": [3, 15], "zar": 3, "zmb": 3, "zwe": 3, "built": [3, 4, 14, 16, 17, 19], "154": 3, "162": 3, "121": 3, "148": 3, "88": 3, "87": [3, 22], "123": 3, "64": 3, "30": [3, 4, 8, 22], "466232": 3, "666667": 3, "066491": 3, "302509": 3, "590909": 3, "636364": 3, "149425": 3, "857143": 3, "220": [3, 22], "926437": 3, "595984": 3, "731106": 3, "std": [3, 4, 22], "42": 3, "389862": 3, "472866": 3, "804287": 3, "105342": 3, "414689": 3, "339967": 3, "576859": 3, "823132": 3, "411": 3, "498230": 3, "303334": 3, "083726": 3, "109248": 3, "550000": 3, "936093": 3, "540459": 3, "25": [3, 4, 22], "886364": 3, "376192": 3, "750000": 3, "350006": 3, "224609": 3, "741120": 3, "50": [3, 4, 22], "950000": 3, "045455": 3, "265764": 3, "442651": 3, "560648": 3, "75": [3, 4], "625000": 3, "272727": 3, "216228": 3, "253": 3, "259995": 3, "610119": 3, "831277": 3, "100": [3, 8, 17, 22], "288750": 3, "2940": 3, "986165": 3, "expect": [3, 11, 18], "scatterplot": 3, "two": [3, 4, 8, 10, 12, 13, 14, 15, 16, 17, 18], "axi": [3, 4, 13, 22], "draw": [3, 22], "piec": [3, 8], "white": [3, 10], "board": [3, 9], "obviou": 3, "exist": [3, 16, 19], "pyplot": [3, 4, 16, 22], "plt": [3, 4, 16, 22], "scatter": [3, 4, 16, 22], "xlim": [3, 16, 22], "ylim": [3, 16], "xlabel": [3, 4, 16, 22], "ylabel": [3, 4, 16, 22], "ppp": 3, "grid": [3, 4, 13], "color": [3, 4, 16, 22], "grai": [3, 4], "linestyl": [3, 4, 16], "linewidth": [3, 4, 22], "alpha": [3, 4, 16, 22], "show": [3, 4, 10, 12, 16, 18, 22], "fairli": [3, 12], "strong": [3, 4], "higher": 3, "qualiti": 3, "better": [3, 12, 13, 22], "appear": [3, 10], "power": [3, 11, 14, 16], "groupbi": [3, 4, 15], "thought": [3, 22], "whose": 3, "abbrevi": 3, "z": [3, 4, 16, 22], "atom": 3, "letter": [3, 14], "isin": 3, "h": [3, 22], "tmp": 3, "ipykernel_2739": 3, "3993614049": 3, "py": [3, 6, 11, 12, 13, 14, 17, 18, 19], "settingwithcopywarn": 3, "try": [3, 4, 16, 22], "slice": [3, 13], "caveat": 3, "pydata": [3, 15], "user_guid": 3, "view": [3, 10], "28": [3, 4], "449091": 3, "40": [3, 14], "994987": 3, "58": 3, "689655": 3, "870507": 3, "99": [3, 8, 14, 22], "31": [3, 4, 22], "586870": 3, "43": 3, "310207": 3, "104": 3, "653846": 3, "763590": 3, "014099": 3, "96": [3, 14], "anoth": [3, 4, 8, 14, 18, 22], "readabl": [3, 14, 19], "abov": [3, 4, 10, 12, 15, 16, 19, 22], "just": [3, 4, 10, 16, 18, 22], "separ": [3, 15, 19, 22], "restrict": [3, 22], "74": 3, "204545": 3, "381995": 3, "672727": 3, "654546": 3, "236364": 3, "015854": 3, "534877": 3, "701214": 3, "478047": 3, "854914": 3, "104331": 3, "373110": 3, "374386": 3, "624413": 3, "982062": 3, "431": [3, 22], "900574": 3, "347500": 3, "119577": 3, "417576": 3, "075005": 3, "220586": 3, "789016": 3, "301521": 3, "81": 3, "599998": 3, "400960": 3, "500000": [3, 4], "613637": 3, "366871": 3, "259": 3, "889984": 3, "559247": 3, "53": [3, 4], "33": [3, 22], "32": [3, 4, 22], "34": [3, 22], "59": 3, "849130": 3, "160035": 3, "454545": 3, "606061": 3, "617647": 3, "222": 3, "747574": 3, "718197": 3, "777811": 3, "466675": 3, "718516": 3, "103215": 3, "513599": 3, "317588": 3, "527271": 3, "517867": 3, "374": 3, "625153": 3, "223847": 3, "035098": 3, "253829": 3, "145931": 3, "818182": 3, "279319": 3, "71": [3, 4], "262680": 3, "710639": 3, "863636": 3, "107720": 3, "140": 3, "941642": 3, "595533": 3, "659091": 3, "885994": 3, "240": 3, "215740": 3, "602901": 3, "our": [3, 4, 13, 16, 19, 22], "ey": [3, 22], "seem": [3, 8, 22], "figur": [3, 4, 8, 16, 22], "12": [3, 4, 13, 15, 16, 22], "choos": [3, 13, 16, 22], "like": [3, 4, 9, 10, 13, 15, 16, 18, 19, 22], "reason": [3, 4, 16, 22], "assumpt": [3, 4], "logpgp95_i": 3, "beta_0": [3, 4], "beta_1": [3, 4], "avexpr_i": 3, "u_i": [3, 4], "intercept": 3, "trend": 3, "slope": [3, 22], "margin": [3, 5], "deviat": [3, 22], "due": [3, 8, 22], "factor": [3, 10, 22], "involv": 3, "straight": 3, "best": [3, 16, 22], "fit": [3, 4, 16], "accord": [3, 4, 19], "criterion": [3, 16, 22], "np": [3, 4, 10, 16, 22], "drop": [3, 4], "na": 3, "requir": [3, 10, 13, 16, 19, 22], "polyfit": 3, "df1_subset": 3, "dropna": [3, 4], "subset": [3, 15], "sampl": [3, 4, 15, 22], "purpos": [3, 4], "smaller": [3, 16, 22], "label": [3, 4, 16, 22], "marker": [3, 18, 22], "enumer": 3, "annot": 3, "iloc": 3, "poly1d": 3, "black": [3, 4, 16, 22], "fig": [3, 4, 22], "expropropri": 3, "techniqu": 3, "beta": [3, 4, 10, 14, 16, 22], "ordinari": 3, "squar": [3, 16, 22], "name": [3, 4, 5, 8, 9, 13, 15, 18, 22], "impli": [3, 10, 22], "solv": [3, 16, 22], "find": [3, 4, 9, 10, 12, 13, 15, 17, 18, 19, 22], "minim": [3, 5, 6, 13, 18, 22], "sum": [3, 4, 8, 13, 18, 22], "residu": [3, 4], "hat": [3, 4, 5, 16], "_": [3, 4, 16, 22], "min_": [3, 4, 22], "u": [3, 22], "_i": [3, 22], "constant": [3, 15, 16, 17, 19, 22], "add": [3, 6, 8, 10, 14], "consid": [3, 6, 15, 16], "wa": [3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "x_i": [3, 4, 16, 22], "const": 3, "statsmodel": 3, "modul": [3, 10, 16, 17, 18, 19], "arrai": [3, 4, 10, 13, 16, 19, 22], "argument": [3, 10, 13, 15, 16, 22, 23], "pip": 3, "instal": [3, 10], "upgrad": 3, "sm": 3, "reg1": 3, "endog": 3, "exog": 3, "miss": [3, 4], "linear_model": 3, "far": [3, 12], "independ": [3, 4, 16], "instruct": [3, 10, 19], "about": [3, 4, 5, 6, 8, 13, 14, 15, 16, 19, 22, 23], "obtain": [3, 18], "_0": 3, "_1": [3, 16, 22], "calcul": [3, 10, 22], "regressionresultswrapp": 3, "lot": [3, 22], "work": [3, 4, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22], "maximum": [3, 16, 22, 23], "call": [3, 4, 8, 14, 15, 17, 18, 19, 22], "note": [3, 4, 8, 9, 10, 13, 15, 16, 18, 22, 23], "mistakenli": 3, "maketable2": 3, "thu": 3, "slightli": 3, "dep": 3, "611": 3, "adj": 3, "608": 3, "171": 3, "date": [3, 8, 10, 15], "fri": 3, "nov": 3, "prob": 3, "16e": 3, "09": 3, "111": [3, 15], "aic": 3, "243": 3, "df": [3, 15], "109": 3, "bic": 3, "248": 3, "nonrobust": 3, "coef": 3, "err": [3, 22], "025": 3, "975": [3, 22], "6261": 3, "301": [3, 22], "15": [3, 4, 22], "391": 3, "000": [3, 22], "030": 3, "5319": 3, "041": 3, "093": 3, "451": 3, "612": [3, 22], "omnibu": 3, "251": 3, "durbin": 3, "watson": 3, "689": 3, "010": 3, "jarqu": 3, "bera": 3, "jb": 3, "170": 3, "skew": 3, "680": 3, "0102": 3, "kurtosi": 3, "362": [3, 22], "cond": 3, "assum": [3, 4, 16, 22], "correctli": [3, 6], "get": [3, 15, 16, 18, 22], "item": [3, 22], "save": [3, 8, 10, 11, 13, 15, 16, 18, 22], "attribut": [3, 14, 15], "dir": 3, "freedom": 3, "df_resid": 3, "param": [3, 22], "bse": 3, "hc0_se": 3, "hc1_se": 3, "hc2_se": 3, "hc3_se": 3, "_hccm": 3, "__class__": 3, "__delattr__": 3, "__dict__": 3, "__dir__": 3, "__doc__": 3, "__eq__": 3, "__format__": 3, "__ge__": 3, "__getattribute__": 3, "__gt__": 3, "__hash__": 3, "__init__": 3, "__init_subclass__": 3, "__le__": 3, "__lt__": 3, "__module__": 3, "__ne__": 3, "__new__": 3, "__reduce__": 3, "__reduce_ex__": 3, "__repr__": 3, "__setattr__": 3, "__sizeof__": 3, "__str__": 3, "__subclasshook__": 3, "__weakref__": 3, "_abat_diagon": 3, "_cach": 3, "_data_attr": 3, "_data_in_cach": 3, "_get_robustcov_result": 3, "_get_wald_nonlinear": 3, "_is_nest": 3, "_transform_predict_exog": 3, "_use_t": 3, "_wexog_singular_valu": 3, "centered_tss": 3, "compare_f_test": 3, "compare_lm_test": 3, "compare_lr_test": 3, "condition_numb": 3, "conf_int": 3, "conf_int_el": 3, "cov_hc0": 3, "cov_hc1": 3, "cov_hc2": 3, "cov_hc3": 3, "cov_kwd": 3, "cov_param": 3, "cov_typ": 3, "df_model": 3, "diagn": 3, "eigenv": 3, "el_test": 3, "ess": 3, "f_pvalu": 3, "f_test": 3, "fittedvalu": 3, "fvalu": 3, "get_influ": 3, "get_predict": 3, "get_robustcov_result": 3, "info_criteria": 3, "initi": [3, 8, 16, 22, 23], "k_constant": 3, "llf": 3, "load": [3, 22], "mse_model": 3, "mse_resid": 3, "mse_tot": 3, "nob": 3, "normalized_cov_param": 3, "outlier_test": 3, "pvalu": 3, "remove_data": 3, "resid_pearson": 3, "rsquar": 3, "rsquared_adj": 3, "ssr": 3, "summary2": 3, "t_test": 3, "t_test_pairwis": 3, "tvalu": 3, "uncentered_tss": 3, "use_t": 3, "wald_test": 3, "wald_test_term": 3, "wresid": 3, "626089": 3, "531871": 3, "dtype": [3, 4, 22], "float64": [3, 4, 22], "300575": 3, "040621": 3, "scikit": [3, 13], "sklearn": 3, "linearregress": 3, "harder": [3, 8, 18], "valuabl": [3, 10], "go": [3, 4, 6, 8, 9, 14, 16, 19], "63": 3, "saw": [3, 16, 22], "would": [3, 4, 6, 8, 9, 10, 14, 22], "tell": [3, 4, 16], "signific": [3, 18], "05": [3, 13, 22], "reject": [3, 4], "indic": [3, 4], "around": [3, 10, 22], "variat": 3, "shown": [3, 4, 16, 22], "level": [3, 15, 19], "section": [3, 4, 6, 9, 10, 12, 16, 17, 18, 19, 20, 21, 22, 23], "regressionresult": 3, "much": [3, 4, 10, 13, 16, 22], "evidenc": 3, "equal": [3, 4, 5, 14, 16, 18, 22], "minu": [3, 4], "regressor": 3, "One": [3, 4, 13, 16, 18, 19, 22], "robust": [3, 4, 5, 16], "option": [3, 4, 10, 15, 22], "three": [3, 4, 8, 13, 16, 22], "hc1": 3, "hc2": 3, "hc3": 3, "cluster": 3, "mygroup": 3, "overal": [3, 15], "sst": 3, "total": [3, 4, 5, 8, 13, 15, 22], "expres": 3, "ssm": 3, "penal": 3, "extra": [3, 16, 22], "properti": [3, 4, 16, 19, 22], "bullet": [3, 4], "alwai": [3, 8, 16, 22], "explanatori": [3, 4, 5], "joint": 3, "hypothesi": 3, "zero": [3, 4, 10, 13, 16, 22], "d1": 3, "d2": 3, "null": [3, 4], "true": [3, 4, 16, 22], "realli": [3, 22], "small": [3, 6, 22], "normal": 3, "entitl": [3, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 23], "support": [3, 13, 19, 23], "student": [3, 9, 13, 23], "equival": [3, 4, 16], "side": [3, 4, 9, 16], "greater": [3, 4, 13, 16, 22], "intuit": [3, 4, 8, 10, 13, 22], "everi": [3, 6, 8, 16, 18, 22], "mean_expr": 3, "predicted_logpdp95": 3, "375240297317506": 3, "easier": [3, 14], "accur": [3, 18, 22], "38455358": 3, "lie": 3, "along": [3, 19, 20, 21, 22], "comparison": [3, 15], "whole": 3, "df1_plot": 3, "blend": 3, "transpar": 3, "opaqu": 3, "legend": [3, 16, 22], "For": [3, 4, 6, 8, 10, 16, 19, 22], "397": 3, "auto": 3, "csv": [3, 4, 12, 15], "folder": [3, 10, 22], "book": [3, 4, 6, 8, 16, 22], "mpg": 3, "mile": 3, "gallon": 3, "cylind": 3, "displac": 3, "cubic": [3, 16], "inch": 3, "horsepow": 3, "weight": 3, "vehicl": 3, "acceler": 3, "mph": 3, "sec": 3, "car": 3, "european": 3, "japanes": 3, "read_csv": [3, 4], "look": [3, 4, 8, 10, 16, 22], "charact": 3, "place": [3, 10, 23], "na_valu": 3, "produc": [3, 18, 22], "df_numer": 3, "block": [3, 10, 16], "scatter_matrix": 3, "figsiz": 3, "diagon": 3, "kde": 3, "corr": [3, 22], "wrong": [3, 4, 22], "fix": [3, 16, 22], "hint": [3, 11], "There": [3, 4, 19, 22], "issu": [3, 9, 11, 22], "split": [3, 4, 16], "mpg_i": 3, "cylinders_i": 3, "beta_2": [3, 4], "displacement_i": 3, "beta_3": [3, 4], "horsepower_i": 3, "qquad": 3, "beta_4": 3, "weight_i": 3, "beta_5": 3, "acceleration_i": 3, "beta_6": 3, "year_i": 3, "beta_7": 3, "origin_i": 3, "european_i": 3, "beta_8": 3, "japanese_i": 3, "NOT": 3, "word": [3, 22], "_6": 3, "part": [3, 6, 8, 18, 19, 22], "identifi": [3, 4, 16, 18, 22], "Is": [3, 16], "wors": 3, "happen": [3, 22], "200": 3, "1999": 3, "ch": [3, 22], "bcf": 3, "usc": 3, "basic": [4, 12, 19], "That": [4, 8, 12, 22], "y_i": 4, "take": [4, 10, 13, 16, 22], "continuum": 4, "class": [4, 10, 14, 15, 16], "binari": [4, 19], "male": 4, "femal": 4, "dead": 4, "aliv": 4, "accept": 4, "geq": [4, 16, 22], "red": [4, 16, 22], "blue": [4, 16], "green": [4, 6, 22], "teenag": 4, "young": [4, 9, 16], "adult": 4, "middl": [4, 13, 16], "ag": [4, 13, 15, 16], "distanc": [4, 22], "matter": 4, "flowercolor_i": 4, "neighborhood_i": 4, "season_i": 4, "income_i": 4, "x_": [4, 16, 22], "th": [4, 22], "Then": [4, 15, 16, 18, 19, 22], "formul": 4, "pr": [4, 6, 8], "foral": [4, 16], "i_j": 4, "otherwis": [4, 22], "pure": 4, "illustr": 4, "seriou": 4, "shortcom": 4, "almost": [4, 22], "strictli": [4, 16, 22], "domin": 4, "variant": [4, 5], "probit": [4, 22], "flexibl": [4, 13], "easili": 4, "commonli": [4, 10, 19], "bare": 4, "loss": [4, 5, 16], "z_i": 4, "beta_p": 4, "nice": [4, 10, 18, 22], "easi": [4, 10, 19], "computation": [4, 22], "conveni": [4, 22], "reinterpret": 4, "redefinit": 4, "drawback": [4, 13], "difficult": [4, 13, 16, 18, 22], "publish": [4, 8, 18], "contrast": 4, "tranform": 4, "map": 4, "monoton": 4, "candid": 4, "bigl": [4, 22], "bigr": [4, 22], "arctan": 4, "cdf": [4, 22], "why": [4, 8, 10], "sin": 4, "co": [4, 9, 13], "criteria": 4, "constrain": [4, 18], "stricli": 4, "x_val": 4, "linspac": [4, 16, 22], "500": [4, 16, 22], "y_val": 4, "exp": [4, 16, 22], "combin": [4, 13, 15, 16, 19, 22], "paramt": [4, 22], "gmm": [4, 20, 22], "match": [4, 22], "overli": 4, "If": [4, 6, 8, 9, 10, 14, 16, 19, 22], "error": [4, 5, 6, 9, 10, 11, 16, 19, 22], "varepsilon_i": 4, "nll": 4, "character": [4, 16, 22], "came": [4, 13], "mathcal": [4, 22], "prod_": 4, "close": [4, 16, 22], "mle": [4, 21, 22], "maxim": [4, 22], "ln": [4, 22], "therefor": [4, 16, 19, 22], "max_": [4, 22], "am": 4, "commentari": 4, "mania": 4, "famou": 4, "passeng": 4, "surviv": 4, "di": 4, "githubusercont": [4, 15, 22], "train": [4, 9, 10], "passengerid": 4, "pclass": 4, "sex": [4, 15], "sibsp": 4, "parch": 4, "ticket": 4, "fare": 4, "cabin": 4, "embark": 4, "891": 4, "714": 4, "446": 4, "383838": 4, "308642": 4, "699118": 4, "523008": 4, "381594": 4, "204208": 4, "353842": 4, "486592": 4, "836071": 4, "14": [4, 22], "526497": 4, "102743": 4, "806057": 4, "49": [4, 15], "693429": 4, "420000": 4, "223": 4, "125000": 4, "910400": 4, "454200": 4, "668": 4, "38": [4, 22], "80": [4, 14], "512": 4, "329200": 4, "ye": 4, "1st": [4, 8, 19], "2nd": [4, 8, 19, 22], "3rd": 4, "gender": 4, "sibl": 4, "spous": 4, "aboard": 4, "parent": 4, "british": 4, "pound": 4, "port": 4, "cherbourg": 4, "q": [4, 22], "queenstown": 4, "southampton": 4, "target": 4, "sinc": [4, 9, 10], "passang": 4, "sure": [4, 6, 11, 18, 22, 23], "value_count": 4, "bar": [4, 12, 15], "chart": 4, "549": 4, "342": 4, "int64": 4, "ax": [4, 16, 22], "subplot": [4, 22], "vbar": 4, "did": [4, 10, 15, 22], "yaxi": 4, "bar_label": 4, "label_typ": 4, "edg": 4, "isnul": 4, "off": [4, 13, 14], "talli": 4, "177": 4, "687": 4, "info": 4, "frame": [4, 15, 22], "rangeindex": 4, "890": 4, "non": [4, 13, 16], "204": 4, "11": [4, 8, 15, 19], "889": 4, "usag": [4, 10], "83": 4, "kb": 4, "select": [4, 6, 15, 22], "major": [4, 19], "should": [4, 6, 8, 15, 18, 22], "analysi": [4, 15, 19], "interest": [4, 8, 10, 14, 16, 19, 22], "exclud": 4, "obvious": 4, "relev": [4, 19], "boat": 4, "affect": [4, 22], "impact": [4, 6], "person": 4, "rel": [4, 10, 16, 17], "paid": 4, "hi": [4, 13], "mayb": [4, 22], "point": [4, 6, 13, 19, 22], "fill": 4, "titanic_data": 4, "2500": 4, "2833": 4, "26": [4, 22], "9250": 4, "35": [4, 16, 22], "1000": [4, 22], "0500": 4, "down": [4, 18], "deal": 4, "imput": 4, "relat": [4, 9, 22], "491": 4, "216": 4, "184": 4, "age_by_pclass_dtalst": 4, "pclass_val": 4, "rang": [4, 22], "age_by_pclass_vec": 4, "remov": 4, "boxplot": 4, "age_by_pclass_vec_nonan": 4, "isnan": 4, "append": 4, "boxplot1": 4, "notch": 4, "vert": 4, "vertic": 4, "align": 4, "patch_artist": 4, "showmean": 4, "whisker": 4, "pink": 4, "lightblu": 4, "lightgreen": 4, "patch": 4, "zip": [4, 19], "set_facecolor": 4, "live": [4, 13, 14, 16], "quartil": 4, "25th": 4, "percentil": 4, "75th": 4, "50th": 4, "great": [4, 10, 19, 22], "triangl": 4, "extend": 4, "5x": 4, "inter": 4, "iqr": 4, "outlier": 4, "beyond": [4, 16], "altern": [4, 8], "histogram": [4, 22], "roughli": [4, 22], "speak": 4, "sai": [4, 22], "younger": 4, "older": [4, 8], "loos": 4, "37": [4, 22], "paseng": 4, "assign": 4, "median_ag": 4, "age_imput": 4, "row_index": 4, "loc": [4, 22], "imputed_ob": 4, "136": 4, "inplac": 4, "convert": 4, "dummi": 4, "reformat": 4, "express": [4, 22], "event": [4, 18], "favorit": [4, 16], "team": [4, 8], "win": 4, "game": 4, "lose": 4, "four": [4, 12, 16, 23], "gambler": 4, "predictor": 4, "coefici": 4, "beta_": 4, "percent": [4, 22], "extens": [4, 10, 19], "accomod": 4, "geq2": 4, "eta_j": 4, "sum_v": 4, "eta_v": 4, "leq": [4, 16, 22], "onc": [4, 6, 8, 12, 16, 22], "final": [4, 13, 15], "analog": [4, 14, 22], "percentag": [4, 22], "iri": 4, "versu": 5, "classif": 5, "parametr": [5, 18], "supervis": 5, "unsupervis": 5, "introduc": [5, 18, 19], "paradigm": 5, "cross": [5, 22], "valid": 5, "artifici": 5, "intellig": [5, 16], "indistinguish": 5, "mostli": 5, "focus": 5, "tune": 5, "highli": [5, 13, 16], "exot": 5, "super": 5, "stochast": [5, 16], "gradient": [5, 22], "descent": 5, "appropri": [5, 13], "nondescript": 5, "On": 5, "accuraci": 5, "outperform": 5, "top": [5, 9, 10, 13], "cost": [5, 10, 19], "interpret": [5, 13, 16, 19], "clear": [5, 6, 8], "hand": [5, 16, 19], "nearli": 5, "imposs": 5, "claim": 5, "neural": 5, "net": 5, "recent": [5, 8, 19, 20, 21], "athei": 5, "re": [5, 22], "establish": [5, 13], "causal": 5, "citat": [5, 9, 10], "economist": [6, 19], "semant": [6, 19], "protocol": 6, "suggest": [6, 10, 16], "correct": [6, 18, 19], "button": [6, 8], "pleas": [6, 9, 15], "concis": 6, "directli": [6, 22], "traceback": [6, 11], "messag": [6, 8, 11, 16, 22], "reproduc": [6, 10], "flow": [6, 8], "submit": [6, 9], "toward": [6, 23], "submiss": 6, "ask": [6, 23], "clarif": 6, "thread": [6, 10], "satisfi": 6, "becom": [6, 8, 18], "format": [6, 10, 13, 15], "signifi": 6, "dev": [6, 8, 22], "conda": [6, 19], "successfulli": [6, 16, 22], "someon": [6, 10], "els": [6, 10, 22], "author": [6, 9, 10], "few": [6, 10, 15, 23], "explan": 6, "break": [6, 11], "past": [6, 11], "connect": [6, 10, 19, 22], "deprec": 6, "guidelin": 6, "compat": [6, 10], "convei": [6, 22], "changelog": 6, "md": [6, 9], "setup": 6, "typograph": 6, "stylist": 6, "ex": 6, "move": [6, 11], "ad": [6, 19], "jupyt": [6, 9, 12, 15, 17, 19, 23], "refactor": 6, "coauthor": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "jason": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "deback": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], "warn": 8, "season": 8, "entrant": 8, "curv": 8, "steep": 8, "obstacl": 8, "togeth": [8, 13, 15, 16, 19, 22], "academ": 8, "step": [8, 19], "safeguard": 8, "invov": 8, "diagram": 8, "advoc": 8, "notic": [8, 22], "favicon": 8, "tab": 8, "outset": 8, "ineract": 8, "ideal": [8, 18], "scaleabl": 8, "commun": [8, 13, 19], "cover": [8, 13, 18, 19], "94": 8, "last": [8, 13, 22], "517": 8, "413": 8, "javascript": 8, "90": [8, 22], "fortun": [8, 18], "world": [8, 15, 17, 22], "post": [8, 9, 13], "largest": 8, "discuss": [8, 10, 13, 16], "ff": 8, "rebas": 8, "shane": 8, "ssfc": 8, "tech": 8, "pslmodel": 8, "stai": 8, "up": [8, 13, 17], "modifi": [8, 14], "click": [8, 9], "corner": 8, "dialogu": 8, "confirm": [8, 10, 16], "exact": 8, "account": [8, 10], "navig": [8, 9], "plu": 8, "directoryaboverepo": 8, "rickecon": [8, 9], "upstream": 8, "cd": 8, "v": [8, 9, 22], "ll": [8, 15, 19], "automat": [8, 9, 10, 18], "suppos": [8, 13, 22], "been": [8, 9, 10, 13, 22], "checkout": 8, "devbranchnam": 8, "activ": 8, "uncommit": 8, "statu": [8, 16, 22], "uno": 8, "latest": [8, 10], "filenam": 8, "tag": [8, 10], "onto": 8, "fetch": 8, "stop": [8, 11], "potenti": [8, 18, 22], "offens": 8, "divis": 8, "connot": 8, "exercis": [9, 20, 21], "modern": [9, 13], "scientist": 9, "2008": [9, 15], "primarili": [9, 13, 16], "endeavor": 9, "2016": 9, "assist": 9, "professor": 9, "depart": 9, "brigham": 9, "taught": [9, 23], "undergradu": 9, "intern": 9, "financ": 9, "founder": [9, 13], "director": 9, "2013": 9, "nation": [9, 15], "grant": 9, "math": [9, 10], "emphasi": [9, 19], "curriculum": 9, "present": [9, 15, 16, 22], "advisori": 9, "member": [9, 10], "2014": 9, "2018": [9, 15, 23], "center": [9, 22], "enterpris": 9, "fellow": 9, "becker": 9, "friedman": 9, "chicago": [9, 23], "social": [9, 23], "graduat": [9, 23], "presid": 9, "utah": 9, "jointli": 9, "handl": [9, 19], "welcom": 9, "mainten": [9, 19], "publicli": 9, "subsect": 9, "icon": 9, "markdown": [9, 10, 15, 19], "toggl": 9, "desktop": 9, "window": [9, 11, 12, 13, 14, 15, 17, 18, 19], "screen": 9, "mode": 9, "background": 9, "light": 9, "dark": 9, "bright": 9, "search": [9, 22], "fight": 9, "enter": [9, 15], "lab": [9, 11, 12, 13, 14, 15, 17, 18, 19, 22], "subdirectori": 9, "io": [9, 10], "insert": [9, 22], "haven": 10, "six": [10, 16, 22], "month": 10, "written": [10, 19], "critic": [10, 16], "abil": [10, 18], "yourself": 10, "dissemin": 10, "biggest": 10, "benefit": [10, 16], "writer": 10, "despit": 10, "aspir": 10, "enough": 10, "found": [10, 13, 22], "ourselv": 10, "old": [10, 16, 19], "rewrit": 10, "increment": 10, "script": [10, 18, 19], "longer": [10, 22], "asid": 10, "further": 10, "explor": 10, "differenti": [10, 16, 22], "symbol": [10, 22], "zeros_arrai": 10, "short": 10, "clarifi": 10, "remind": 10, "futur": 10, "someth": [10, 15, 17, 22], "copilot": [10, 19], "feed": 10, "forwrd": 10, "ai": 10, "multi": [10, 15], "enclos": 10, "tripl": 10, "quot": 10, "containt": 10, "after": 10, "pydoc": 10, "def": [10, 16, 18, 22], "foc_sav": 10, "euler": [10, 16], "condit": [10, 16, 22], "household": [10, 16, 22], "r_": [10, 16, 22], "array_lik": 10, "consumpt": [10, 16, 22], "period": [10, 13, 14, 15, 16, 22], "scalar": [10, 22], "coeffici": [10, 16], "avers": [10, 16], "foc": 10, "muc": 10, "mu_c": 10, "euler_error": 10, "latex": 10, "render": 10, "restructuredtext": 10, "markup": 10, "compil": 10, "variou": [10, 15], "style": 10, "sphinxcontrib": 10, "napoleon": 10, "readthedoc": 10, "example_googl": 10, "while": [10, 11, 13, 15, 19, 22], "even": [10, 16, 22], "meet": 10, "sphinx": 10, "recommend": [10, 13, 17, 19], "adopt": 10, "typic": [10, 22], "plain": 10, "lightweight": 10, "special": 10, "myst": 10, "slick": 10, "rst": 10, "discus": 10, "peer": 10, "wrote": [10, 18], "solut": [10, 16, 18, 22], "proper": 10, "who": [10, 13], "peter": 10, "faculti": 10, "1952": 10, "neither": 10, "creator": [10, 13], "supposedli": 10, "pycon": 10, "confer": 10, "referenc": 10, "et": [10, 23], "al": [10, 23], "encount": 11, "certain": 11, "ensur": [11, 14, 18, 22], "occur": [11, 16], "assert": [11, 18], "scroll": [11, 12, 13, 14, 15, 17, 18, 19], "exceptions_fileio": 11, "txt": [11, 22], "wide": [12, 16, 19, 22], "bokeh": 12, "plotli": 12, "seaborn": 12, "Of": [12, 22], "knowleg": 12, "vari": 12, "templat": [12, 13, 14, 15], "matplotlib_intro": 12, "npy": [12, 13], "matplotlib1": 12, "spite": 12, "matplotlib2": 12, "ipynb": [12, 15, 17, 20, 21], "budget": [12, 16], "crime_data": 12, "pandas1": [12, 15], "colleg": 12, "pandas3": [12, 15], "job": 12, "said": [12, 22], "matplotlib3": 12, "collaps": 12, "decad": 12, "within": [12, 14, 22], "fundamant": 13, "stand": 13, "basi": [13, 19], "root": [13, 18], "interpol": [13, 18, 19], "numfocu": [13, 15], "profit": 13, "electr": 13, "matlab": 13, "signal": 13, "phd": 13, "custom": [13, 14, 19], "had": [13, 16, 18], "never": 13, "befor": [13, 16], "network": 13, "felt": 13, "comfort": 13, "him": 13, "algebra": [13, 19], "fundament": 13, "nativ": 13, "hold": [13, 22], "high": [13, 19, 22], "dimension": [13, 15], "tensor": 13, "effeci": 13, "essenti": 13, "numpy_intro": 13, "numpyintro": 13, "advanced_numpi": 13, "advancednumpi": 13, "hardwar": 13, "parallel": 13, "hybrid": 13, "architectur": 13, "across": [13, 15, 22], "tradit": 13, "processor": 13, "gpu": 13, "incorpor": [13, 22], "stack": [13, 15], "area": 13, "diment": 13, "dask": 13, "quantsight": 13, "modular": [13, 19], "mojo": 13, "agent": [13, 14, 16], "bmatrix": [13, 16, 22], "lifecycl": 13, "decis": [13, 16, 22], "amount": [13, 16, 22], "life": [13, 14], "onward": 13, "think": [13, 22], "cohort": 13, "omega": 13, "06": [13, 22], "16": [13, 23], "03": [13, 22], "fraction": [13, 15], "economi": [13, 16, 22], "dot": [13, 22], "transpos": 13, "multipli": 13, "wise": [13, 14], "hadamard": 13, "parenthes": 13, "size": [13, 22], "elsewher": 13, "b_3": 13, "vstack": 13, "b_new": 13, "interview": 13, "liter": 14, "instanc": [14, 16], "correspond": [14, 15, 16, 22], "limit": 14, "classifi": 14, "taxonom": 14, "domain": [14, 16], "kingdom": 14, "phylum": 14, "genu": 14, "speci": 14, "cat": 14, "care": 14, "felida": 14, "mammal": 14, "land": 14, "sub": 14, "dog": 14, "canida": 14, "interoper": 14, "object_ori": 14, "objectori": 14, "prefer": [14, 16], "greek": 14, "p1": 14, "p2": 14, "updat": [14, 15, 20, 21], "instanti": 14, "annual": 14, "beta_annu": 14, "wrangl": 15, "Its": [15, 19], "origini": 15, "mckinnei": 15, "global": [15, 16], "invest": [15, 16, 22], "aqr": 15, "becam": 15, "2009": 15, "sponsor": 15, "2015": 15, "serv": 15, "rich": 15, "layer": 15, "export": 15, "clean": 15, "mung": 15, "2011": [15, 22], "maddison": 15, "databas": 15, "1990": 15, "087": 15, "179": 15, "982": 15, "2000": 15, "753": 15, "475": 15, "45": 15, "886": 15, "583": 15, "526": 15, "18": [15, 22], "574": 15, "267": 15, "319": 15, "806": 15, "842": [15, 22], "335": 15, "166": 15, "inspect": 15, "tail": 15, "keep": [15, 16, 19], "integ": [15, 17, 22], "reshap": [15, 22], "multiindex": 15, "pivot_t": 15, "prior": 15, "sever": [15, 19], "suitabl": 15, "manual": 15, "popul": 15, "extract": 15, "prospect": 15, "south": 15, "africa": 15, "eapd": 15, "drb": 15, "ogzaf": 15, "demograph": 15, "un_zaf_pop": 15, "veric": 15, "header": 15, "zaf_pop": 15, "ageid": 15, "sexid": 15, "timelabel": 15, "renam": 15, "densiti": [15, 22], "offer": 15, "join": 15, "again": [15, 16], "women": 15, "zaf_female_pop": 15, "hard": [15, 16, 22], "comma": [15, 22], "getting_start": 15, "comparison_with_r": 15, "homepag": 16, "eigenvalu": 16, "bx": 16, "restat": 16, "f_r": 16, "x_1": 16, "x_2": 16, "x_k": 16, "arbitrari": [16, 22], "f_1": 16, "f_2": 16, "vdot": [16, 22], "represent": [16, 22], "univari": [16, 22], "multivari": [16, 22], "mathbb": 16, "rightarrow": [16, 22], "neq": 16, "f_": 16, "3x": 16, "10z": 16, "6x": 16, "2y": 16, "20z": 16, "2xy": 16, "exactli": [16, 22], "theoret": 16, "easiest": 16, "f_i": 16, "invers": [16, 22], "recogn": [16, 22], "proven": 16, "finit": [16, 22], "guarante": 16, "converg": [16, 22], "particular": [16, 22], "unless": 16, "proof": 16, "programm": 16, "mind": 16, "absenc": 16, "solutino": 16, "failur": 16, "ever": 16, "poorli": [16, 22], "transform": [16, 22], "192": 16, "accumul": 16, "art": [16, 22], "hybr": 16, "lm": 16, "linearmix": 16, "iter": 16, "guess": [16, 22], "evalu": [16, 22], "until": [16, 22], "arbitrarili": [16, 22], "varepsilon_1": 16, "varepsilon_2": 16, "varepsilon_r": 16, "toler": 16, "strategi": [16, 22], "minimum": [16, 18, 22], "debug": [16, 18], "underli": [16, 22], "incorrect": 16, "steadi": 16, "possibl": [16, 22], "contraint": 16, "calori": 16, "engag": 16, "compon": [16, 19], "4x": 16, "By": 16, "approx": [16, 22], "eq1_y_scipyroot_examp1": 16, "deliv": 16, "eq2_y_scipyroot_examp1": 16, "xmin": [16, 22], "xmax": [16, 22], "xval": [16, 22], "y1val": 16, "y2val": 16, "hline": 16, "dash": 16, "weakli": 16, "similarli": 16, "errfunc_scipyroot_examp1": 16, "init": 16, "init_guess_xi": 16, "violat": 16, "opt": [16, 22], "f1_scipyroot_examp1": 16, "error1": 16, "f2_scipyroot_examp1": 16, "error2": 16, "xy_list": 16, "error_func1": 16, "error_func2": 16, "errors_list": 16, "eq1": 16, "eq2": 16, "fun": [16, 22], "success": [16, 22], "235e": 16, "017e": 16, "463e": 16, "01": [16, 22], "331e": 16, "00": [16, 22], "nfev": [16, 22], "fjac": 16, "332e": 16, "529e": 16, "416e": 16, "714e": 16, "357e": 16, "qtf": 16, "145e": 16, "728e": 16, "84630378": 16, "33101497": 16, "23456800e": 16, "01696429e": 16, "846": 16, "331": 16, "1e": [16, 22], "precis": [16, 22], "b_": 16, "n_": 16, "labor": [16, 22], "suppli": [16, 22], "lifetim": 16, "respect": [16, 22], "reformul": 16, "furthermor": 16, "faster": 16, "pp": [16, 22], "519": 16, "760": 16, "unknown": 16, "3x_1": 16, "9x_3": 16, "4x_1": 16, "6x_2": 16, "2x_3": 16, "5x_1": 16, "8x_2": 16, "7x_3": 16, "x_3": 16, "_2": [16, 22], "_3": 16, "verifi": 16, "answer": [16, 22], "nearest": 16, "balanc": 16, "disutil": 16, "wage": [16, 22], "c_1": 16, "c_2": 16, "c_3": 16, "n_1": 16, "n_2": 16, "n_3": 16, "simultan": 16, "n_4": 16, "youngest": 16, "c_t": [16, 22], "oldest": 16, "die": 16, "w_t": [16, 22], "r_t": [16, 22], "plug": 16, "constraint": [16, 22], "1b_": 16, "equilibrium": 16, "determinist": 16, "reach": 16, "circl": 16, "subject": 16, "keyword": 16, "calculu": 16, "15151515": 16, "13131313": 16, "36363636": 16, "39393939": 16, "31313131": 16, "50505051": 16, "12121212": 16, "37373737": 16, "1010101": 16, "73737374": 16, "52525253": 16, "5959596": 16, "53535354": 16, "75757576": 16, "34343434": 16, "18181818": 16, "92929293": 16, "74747475": 16, "56565657": 16, "3030303": 16, "32323232": 16, "11111111": 16, "17171717": 16, "55555556": 16, "14141414": 16, "38383838": 16, "94949495": 16, "70707071": 16, "33333333": 16, "96969697": 16, "72727273": 16, "77777778": 16, "90512352": 16, "01027934": 16, "0803643": 16, "03083368": 16, "96698762": 16, "48385164": 16, "85230712": 16, "8868821": 16, "10083842": 16, "56115544": 16, "57805259": 16, "54402111": 16, "17034683": 16, "38366419": 16, "50174037": 16, "93270486": 16, "94674118": 16, "21070855": 16, "99938456": 16, "27872982": 16, "2984138": 16, "73002623": 16, "8961922": 16, "77614685": 16, "66510151": 16, "84137452": 16, "86287948": 16, "97202182": 16, "64960951": 16, "19056796": 16, "63384295": 16, "40256749": 16, "99709789": 16, "interp1d": 16, "kind": [16, 22], "spline": 16, "fill_valu": 16, "extrapol": 16, "chap": 16, "uniti": 16, "crra": 16, "nu": 16, "excel": [17, 19], "standardlibrari": 17, "hello": 17, "module_nam": 17, "fibonacci": 17, "sequenc": 17, "sy": 17, "expand": 18, "interdepend": 18, "interconnect": 18, "bug": 18, "cut": 18, "suit": 18, "spec": 18, "test_spec": 18, "unittest": 18, "therebi": 18, "leverag": [18, 19], "yaml": 18, "trigger": 18, "push": 18, "chronolog": 18, "schedul": 18, "codecov": 18, "analyt": [18, 22], "test_min": 18, "test_exercis": 18, "statement": [18, 22], "pass": 18, "ndarrai": 18, "my_sum": 18, "mark": 18, "decor": 18, "skip": 18, "gave": 18, "pypl": 19, "walk": 19, "excercis": 19, "site": 19, "essai": 19, "paragraph": 19, "bind": 19, "attract": 19, "rapid": 19, "glue": 19, "syntax": 19, "reus": 19, "charg": 19, "customiz": 19, "heavili": [19, 22], "mac": 19, "osx": 19, "pickl": 19, "os": 19, "ipython": 19, "session": 19, "spyder": 19, "highlight": [19, 22], "linter": 19, "fly": 19, "declar": 19, "lint": 19, "cornflak": 19, "pack": 19, "gitlen": 19, "pylanc": 19, "amaz": 19, "python_intro": 19, "pythonintro": 19, "etc": 19, "throughout": 19, "string": [19, 22], "feel": 19, "seven": 19, "unixshell1": 19, "sh": 19, "shell1": 19, "gmmest": 20, "structest_w20": [20, 21], "mlest": 21, "semin": 22, "textbook": 22, "383": 22, "394": 22, "parameter": 22, "theta_1": 22, "theta_2": 22, "theta_k": 22, "likelihood": 22, "ml": 22, "m_1": 22, "m_2": 22, "m_r": 22, "difficulti": 22, "aris": 22, "known": 22, "censor": 22, "partial": 22, "tild": 22, "_s": 22, "_r": 22, "norm": 22, "studi": 22, "metric": 22, "e_r": 22, "e_": 22, "e_1": 22, "e_2": 22, "neg": 22, "receiv": 22, "unintend": 22, "properli": 22, "suffer": 22, "littl": 22, "ill": 22, "econometrician": 22, "drawn": 22, "held": 22, "matric": 22, "poor": 22, "smallest": 22, "asymptot": 22, "downweight": 22, "circular": 22, "greatli": 22, "ddot": 22, "denomin": 22, "baselin": 22, "m_": 22, "lastli": 22, "2step": 22, "truli": 22, "procedur": 22, "repeat": 22, "varepsilon": 22, "presenc": 22, "heteroskedast": 22, "82": 22, "exposit": 22, "nw": 22, "lim_": 22, "consistend": 22, "gamma_": 22, "gamma": 22, "t_": 22, "subscript": 22, "length": 22, "overidentifi": 22, "underidentifi": 22, "hessian": 22, "curvatur": 22, "jacobian": 22, "assymptot": 22, "theta_0": 22, "plim": 22, "forward": 22, "x_0": 22, "2h": 22, "econ381totpt": 22, "450": 22, "chosen": 22, "necessari": 22, "stat": 22, "st": 22, "mpl_toolkit": 22, "mplot3d": 22, "axes3d": 22, "trunc_norm_pdf": 22, "cut_lb": 22, "cut_ub": 22, "inflat": 22, "upward": 22, "reflect": 22, "sp": 22, "none": 22, "AND": 22, "BY": 22, "prob_notcut": 22, "pdf_val": 22, "elif": 22, "data_fil": 22, "allow_redirect": 22, "wb": 22, "loadtxt": 22, "num_bin": 22, "bin": 22, "ignor": 22, "hist": 22, "edgecolor": 22, "381": 22, "fontsiz": 22, "550": 22, "smooth": 22, "dist_pt": 22, "mu_1": 22, "300": 22, "sig_1": 22, "mu_2": 22, "400": 22, "sig_2": 22, "70": 22, "mu_3": 22, "558": 22, "sig_3": 22, "176": 22, "midterm": 22, "scores_i": 22, "var": 22, "rnd": 22, "linalg": 22, "lin": 22, "intgr": 22, "cm": 22, "cmap1": 22, "get_cmap": 22, "summer": 22, "trunc_norm_draw": 22, "uniform": 22, "u_": 22, "unif_v": 22, "randomli": 22, "nontrunc": 22, "cut_ub_cdf": 22, "cut_lb_cdf": 22, "unif2_v": 22, "rescal": 22, "tnorm_draw": 22, "ppf": 22, "161": 22, "cut_lb_1": 22, "cut_ub_1": 22, "seed": 22, "1975": 22, "unif_vals_1": 22, "rv": 22, "draws_1": 22, "17445658136046": 22, "626705029347": 22, "632684126222152": 22, "count_d": 22, "bins_d": 22, "ignored_d": 22, "count_m": 22, "bins_m": 22, "ignored_m": 22, "actual": 22, "data_moments2": 22, "mean_data": 22, "var_data": 22, "ndim": 22, "mean_sim": 22, "var_sim": 22, "341": 22, "90869565217395": 22, "7827": 22, "997292398056": 22, "unif_vals_2": 22, "draws_2": 22, "mean_mod": 22, "var_mod": 22, "avg": 22, "299": 22, "17667999": 22, "298": 22, "61052796": 22, "304": 22, "45608507": 22, "37072845": 22, "66868577": 22, "303": 22, "44257561": 22, "68174796": 22, "297": 22, "94014672": 22, "47566228": 22, "63490045": 22, "57207266": 22, "13235013": 22, "296": 22, "63826526": 22, "44460537": 22, "302": 22, "98678012": 22, "09166082": 22, "89663118": 22, "50056988": 22, "56091107": 22, "94919604": 22, "58486163": 22, "109284": 22, "35295389": 22, "4763979": 22, "52345697": 22, "37526236": 22, "54462388": 22, "20756546": 22, "23182905": 22, "92082255": 22, "0881712": 22, "37792528": 22, "69523093": 22, "92838232": 22, "03376169": 22, "9335839": 22, "69026345": 22, "0934371": 22, "70288418": 22, "88610536": 22, "86283252": 22, "10407269": 22, "11654222": 22, "07027394": 22, "29923542": 22, "74552083": 22, "79965311": 22, "59852312": 22, "15616963": 22, "59864217": 22, "295": 22, "52781074": 22, "98090953": 22, "31248226": 22, "44867717": 22, "78114307": 22, "64825256": 22, "68061798": 22, "12495043": 22, "80104697": 22, "305": 22, "78334207": 22, "95811329": 22, "94097772": 22, "02458302": 22, "24287686": 22, "55084554": 22, "62551538": 22, "73820461": 22, "91841652": 22, "97485316": 22, "25235036": 22, "6490962": 22, "80907094": 22, "66541992": 22, "66699545": 22, "68524191": 22, "45696273": 22, "27407424": 22, "22269311": 22, "22887168": 22, "54314562": 22, "85171183": 22, "26405411": 22, "87330671": 22, "59708796": 22, "46696222": 22, "01431864": 22, "27736899": 22, "20186117": 22, "60298908": 22, "34134778": 22, "56023236": 22, "36842728": 22, "81705203": 22, "234357": 22, "93063956": 22, "60442391": 22, "68503428": 22, "32917874": 22, "93011523": 22, "78807296": 22, "854": 22, "27400514": 22, "793": 22, "0403989": 22, "841": 22, "76252205": 22, "819": 22, "86183015": 22, "1055": 22, "80239074": 22, "834": 22, "52746835": 22, "955": 22, "01586149": 22, "93476802": 22, "804": 22, "86989439": 22, "715": 22, "96784403": 22, "927": 22, "66459495": 22, "594": 22, "40100934": 22, "974": 22, "32315671": 22, "903": 22, "2658217": 22, "877": 22, "78145497": 22, "900": 22, "13017505": 22, "871": 22, "56069402": 22, "835": 22, "1365732": 22, "849": 22, "46651395": 22, "02582303": 22, "939": 22, "66718613": 22, "654": 22, "80578245": 22, "998": 22, "41113837": 22, "815": 22, "81618606": 22, "1002": 22, "68353273": 22, "907": 22, "56790563": 22, "724": 22, "85910396": 22, "813": 22, "70435378": 22, "1015": 22, "31786118": 22, "59759144": 22, "888": 22, "63526849": 22, "881": 22, "81187368": 22, "94152651": 22, "976": 22, "74617301": 22, "978": 22, "23045295": 22, "790": 22, "85144559": 22, "933": 22, "04687473": 22, "987": 22, "37433204": 22, "980": 22, "14458376": 22, "1003": 22, "34539581": 22, "859": 22, "63957381": 22, "1050": 22, "9870203": 22, "901": 22, "66724764": 22, "967": 22, "15290016": 22, "1133": 22, "2532708": 22, "60468078": 22, "810": 22, "90856957": 22, "930": 22, "53152973": 22, "921": 22, "0020767": 22, "802": 22, "31271115": 22, "928": 22, "68723732": 22, "1046": 22, "31773806": 22, "932": 22, "0434472": 22, "1025": 22, "05965686": 22, "951": 22, "23678849": 22, "839": 22, "58583279": 22, "941": 22, "39252702": 22, "751": 22, "71431141": 22, "4610679": 22, "1021": 22, "10990195": 22, "863": 22, "80405021": 22, "16404517": 22, "12655726": 22, "1095": 22, "10022731": 22, "848": 22, "76703098": 22, "797": 22, "43467707": 22, "823": 22, "16623979": 22, "1056": 22, "73087072": 22, "821": 22, "12496192": 22, "917": 22, "86308975": 22, "00526807": 22, "862": 22, "52415389": 22, "937": 22, "44315325": 22, "884": 22, "41413606": 22, "28154226": 22, "864": 22, "67286651": 22, "992": 22, "96039373": 22, "4044805": 22, "868": 22, "37693837": 22, "954": 22, "32843377": 22, "814": 22, "35548352": 22, "758": 22, "33184649": 22, "861": 22, "16008799": 22, "8168036": 22, "31470517": 22, "32422902": 22, "1057": 22, "5979759": 22, "843": 22, "6883495": 22, "15291878": 22, "925": 22, "33449079": 22, "778": 22, "30674576": 22, "47550771": 22, "920": 22, "80553617": 22, "902": 22, "19187292": 22, "918": 22, "9232": 22, "880": 22, "47284712": 22, "07711245": 22, "82668059": 22, "1037": 22, "04590733": 22, "75216207": 22, "28595134427394": 22, "898": 22, "7468703753616": 22, "got": 22, "err_vec2": 22, "data_v": 22, "boolean": 22, "fals": 22, "data_mo": 22, "moms_data": 22, "mean_model": 22, "var_model": 22, "moms_model": 22, "err_vec": 22, "sim_val": 22, "w_hat": 22, "vec": 22, "crit_val": 22, "mu_test": 22, "sig_test": 22, "crit_test": 22, "372": 22, "0777280048037": 22, "2663": 22, "8708280174988": 22, "4429893115777857": 22, "crietrion": 22, "mu_init_1": 22, "sig_init_1": 22, "params_init_1": 22, "w_hat1_1": 22, "smm_args1_1": 22, "results1_1": 22, "bfg": 22, "mu_smm1_1": 22, "sig_smm1_1": 22, "3371352249138": 22, "26434895262162": 22, "sim_vals_1": 22, "mean_sim_1": 22, "var_sim_1": 22, "mean_model_1": 22, "var_model_1": 22, "err_1": 22, "opmtim": 22, "6692110494425": 22, "864496338213": 22, "00434373e": 22, "69642445e": 22, "norm_of_projected_gradient_": 22, "_pgtol": 22, "908960959342433e": 22, "07": 22, "123e": 22, "02": 22, "973e": 22, "nit": 22, "jac": 22, "436e": 22, "350e": 22, "72": 22, "njev": 22, "hess_inv": 22, "2x2": 22, "lbfgsinvhessproduct": 22, "337": 22, "264": 22, "smm1": 22, "surfac": 22, "lowest": 22, "mu_val": 22, "700": 22, "sig_val": 22, "250": 22, "crit_arg": 22, "mu_ind": 22, "sig_ind": 22, "crit_param": 22, "mu_mesh": 22, "sig_mesh": 22, "meshgrid": 22, "crit_smm1_1": 22, "subplot_kw": 22, "plot_surfac": 22, "rstride": 22, "cstride": 22, "cmap": 22, "view_init": 22, "elev": 22, "azim": 22, "roll": 22, "set_titl": 22, "set_xlabel": 22, "set_ylabel": 22, "set_zlabel": 22, "crit": 22, "func": 22, "tight_layout": 22, "jac_err2": 22, "theta_i": 22, "jac_err": 22, "h_mu": 22, "h_sig": 22, "flatten": 22, "d_err2": 22, "sighat2": 22, "inv": 22, "mu_hat": 22, "sig_hat": 22, "00089749": 22, "00290433": 22, "00114132": 22, "00445698": 22, "602535": 22, "18442996": 22, "163802": 22, "17330123": 22, "44883": 22, "79092131": 22, "776": 22, "23139876583": 22, "211": 22, "85794986573154": 22, "methodolog": 22, "aren": 22, "get_err_mat2": 22, "pt": 22, "model_mo": 22, "err_mat": 22, "err_mat2": 22, "vcv2": 22, "stage": 22, "cov": 22, "w_hat2_1": 22, "00033411": 22, "00142289": 22, "01592879": 22, "4830": 22, "88530228": 22, "53378728": 22, "101": 22, "32749623": 22, "params_init2_1": 22, "smm_args2_1": 22, "results2_1": 22, "mu_smm2_1": 22, "sig_smm2_1": 22, "619": 22, "4303074248937": 22, "199": 22, "0747813692372": 22, "d_err2_2": 22, "sighat2_2": 22, "00088129": 22, "00288863": 22, "0011259": 22, "00443426": 22, "2397": 22, "38054356": 22, "745": 22, "29670501": 22, "232": 22, "01757158": 22, "963052841479445": 22, "232123016118733": 22, "didn": 22, "still": 22, "pretti": 22, "big": 22, "430": 22, "320": 22, "desir": 22, "data_moments4": 22, "binpct_1": 22, "binpct_2": 22, "binpct_3": 22, "binpct_4": 22, "bpct_1": 22, "bpct_2": 22, "bpct_3": 22, "bpct_4": 22, "err_vec4": 22, "bpct_1_dat": 22, "bpct_2_dat": 22, "bpct_3_dat": 22, "bpct_4_dat": 22, "bpct_1_sim": 22, "bpct_2_sim": 22, "bpct_3_sim": 22, "bpct_4_sim": 22, "bpct_1_mod": 22, "bpct_2_mod": 22, "bpct_3_mod": 22, "bpct_4_mod": 22, "criterion4": 22, "norm_pdf": 22, "diagnos": 22, "strang": 22, "mu_init4_1": 22, "sig_init4_1": 22, "params_init4_1": 22, "w_hat4_1": 22, "smm_args4_1": 22, "results4_1": 22, "mu_smm4_1": 22, "sig_smm4_1": 22, "836206045344852": 22, "000e": 22, "decid": 22, "mu_init": 22, "sig_init": 22, "00000001": 22, "epsilon": 22, "solver": 22, "ep": 22, "differnc": 22, "560593472098": 22, "46": 22, "5751519565219": 22, "rel_reduction_of_f_": 22, "_factr": 22, "epsmch": 22, "9819514324825378": 22, "626e": 22, "658e": 22, "845e": 22, "022e": 22, "144": 22, "round": 22, "decim": 22, "bpct_1_data": 22, "bpct_2_data": 22, "bpct_3_data": 22, "bpct_4_data": 22, "sim_vals4_1": 22, "bpct_1_sim4_1": 22, "bpct_2_sim4_1": 22, "bpct_3_sim4_1": 22, "bpct_4_sim4_1": 22, "bpct_1_model4_1": 22, "bpct_2_model4_1": 22, "bpct_3_model4_1": 22, "bpct_4_model4_1": 22, "err4_1": 22, "criterion4_1": 22, "pct": 22, "val": 22, "08695652173913043": 22, "17391304347826086": 22, "6894409937888198": 22, "049689440993788817": 22, "0017391304347826085": 22, "1820496894409938": 22, "7702484472049688": 22, "04596273291925465": 22, "98": 22, "04678571": 22, "11720721": 22, "075": 22, "jac_err4": 22, "d_err4_1": 22, "sighat4_1": 22, "05417814": 22, "07668099": 22, "01242414": 22, "01934295": 22, "0172385": 22, "48770545": 22, "23": 22, "53170341": 22, "13459776": 22, "786856266717126": 22, "258473642422245": 22, "instead": 22, "get_err_mat4": 22, "err_mat4": 22, "vcv4": 22, "pseudo": 22, "invert": 22, "singular": 22, "decomposit": 22, "svd": 22, "w_hat4_2": 22, "pinv": 22, "61938776e": 22, "52040816e": 22, "15173745e": 22, "28571429e": 22, "66198980e": 22, "27670528e": 22, "74107143e": 22, "57738820e": 22, "54617117e": 22, "10625000e": 22, "08330385": 22, "5343057": 22, "21471629": 22, "78666313": 22, "19111144": 22, "22640243": 22, "41240869": 22, "40386307": 22, "68543805": 22, "443683": 22, "params_init4_2": 22, "params_init2_2": 22, "smm_args4_2": 22, "results4_2": 22, "slsqp": 22, "mu_smm4_2": 22, "sig_smm4_2": 22, "5605400454758": 22, "57507128065564": 22, "9984266286568926": 22, "467e": 22, "255e": 22, "sim_vals4_2": 22, "bpct_1_sim4_2": 22, "bpct_2_sim4_2": 22, "bpct_3_sim4_2": 22, "bpct_4_sim4_2": 22, "bpct_1_model4_2": 22, "bpct_2_model4_2": 22, "bpct_3_model4_2": 22, "bpct_4_model4_2": 22, "err4_2": 22, "criterion4_2": 22, "vallei": 22, "floor": 22, "ridg": 22, "mu_vals4": 22, "340": 22, "380": 22, "sig_vals4": 22, "350": 22, "370": 22, "crit_vals4": 22, "crit_args4": 22, "crit_params4": 22, "mu_mesh4": 22, "sig_mesh4": 22, "crit_smm4_2": 22, "smm4": 22, "decreas": 22, "substanti": 22, "d_err4_2": 22, "sighat4_2": 22, "07668112": 22, "01934298": 22, "53697411": 22, "47391182": 22, "77184156": 22, "8806844791000217": 22, "3311053920876885": 22, "fewer": 22, "orthogon": 22, "mm": 22, "regard": 22, "verif": 22, "infinit": 22, "artistri": 22, "stori": 22, "auxiliari": 22, "x_t": 22, "z_t": 22, "_t": 22, "stastic": 22, "indirectli": 22, "logit": 22, "tractabl": 22, "wald": 22, "ratio": 22, "k_t": 22, "y_t": 22, "newmacroseri": 22, "quarterli": 22, "k_": 22, "rho": 22, "z_": 22, "varepsilon_t": 22, "aggreg": 22, "depreci": 22, "rest": 22, "k_1": 22, "fil": 22, "shock": 22, "todai": 22, "straightforward": 22, "z_0": 22, "w_": 22, "textbf": 22, "optimum": 22, "appendix": 22, "promin": 23, "classic": 23, "bias": 23, "cite": 23, "thesi": 23, "refut": 23, "temper": 23, "undergradut": 23, "syllabi": 23, "slide": 23, "winter": 23}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"refer": 0, "appendix": 1, "truncat": [1, 22], "normal": [1, 22], "distribut": 1, "footnot": [1, 3, 4, 5, 7, 8, 10, 12, 13, 15, 16, 20, 21, 22, 23], "glossari": 2, "basic": [3, 5, 8], "empir": 3, "method": [3, 9, 20, 22], "literatur": 3, "correl": 3, "versu": [3, 4], "causat": 3, "data": [3, 4, 23], "descript": 3, "cross": 3, "tabul": 3, "understand": 3, "linear": [3, 4, 16], "regress": [3, 4], "exampl": [3, 4, 16, 22], "acemoglu": 3, "et": 3, "al": 3, "2001": 3, "what": 3, "do": 3, "coeffici": [3, 4], "standard": [3, 17], "error": 3, "mean": 3, "interpret": [3, 4], "result": 3, "output": [3, 11], "analysi": 3, "varianc": [3, 22], "anova": 3, "f": 3, "test": [3, 6, 18, 22], "log": [3, 4], "likelihood": [3, 4, 21], "infer": [3, 22], "individu": 3, "paramet": 3, "predict": 3, "valu": 3, "extens": [3, 13], "exercis": [3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23], "multipl": 3, "logist": 4, "model": [4, 22, 23], "quantit": 4, "qualit": 4, "The": [4, 22], "classif": 4, "set": 4, "classifi": 4, "probabl": 4, "lp": 4, "logit": 4, "nonlinear": 4, "least": 4, "squar": 4, "estim": [4, 20, 21, 22, 23], "maximum": [4, 21], "titan": 4, "odd": 4, "ratio": 4, "multinomi": 4, "machin": [5, 8], "learn": [5, 7], "contributor": 6, "guid": 6, "creat": [6, 8], "an": 6, "issu": 6, "pull": [6, 8], "request": [6, 8], "automat": 6, "peer": 6, "review": 6, "project": 6, "version": 6, "track": 6, "patch": 6, "bump": 6, "3rd": 6, "digit": 6, "updat": [6, 8], "minor": 6, "major": 6, "neural": 7, "net": 7, "deep": 7, "git": 8, "github": [8, 18], "brief": 8, "definit": 8, "repositori": [8, 9], "wide": 8, "usag": 8, "fork": 8, "clone": 8, "your": 8, "local": 8, "main": 8, "master": 8, "branch": 8, "develop": 8, "make": 8, "chang": 8, "ad": 8, "commit": 8, "push": 8, "remot": 8, "submit": 8, "from": 8, "resolv": 8, "merg": 8, "conflict": 8, "cheat": 8, "sheet": 8, "comput": 9, "economist": 9, "us": [9, 19], "python": [9, 17, 19], "tutori": 9, "site": 9, "function": 9, "associ": 9, "compon": 9, "cite": 9, "thi": 9, "book": [9, 10], "docstr": 10, "document": 10, "eagleson": 10, "s": 10, "law": 10, "program": [10, 14], "guido": 10, "van": 10, "rossum": 10, "clear": 10, "code": [10, 18, 22], "inlin": 10, "comment": 10, "readm": 10, "file": [10, 11], "jupyt": 10, "notebook": 10, "cloud": 10, "other": 10, "publish": 10, "documentaiton": 10, "except": 11, "handl": 11, "input": 11, "matplotlib": 12, "option": [12, 19], "anim": 12, "3d": 12, "nad": 12, "numpi": 13, "futur": 13, "path": 13, "object": 14, "orient": 14, "panda": 15, "scipi": 16, "root": 16, "find": 16, "minim": 16, "interpol": 16, "theori": 16, "system": 16, "rank": 16, "identif": [16, 22], "problem": [16, 22], "wisdom": 16, "simpl": 16, "numer": 16, "og": 16, "core": 16, "equat": 16, "algebra": 16, "vs": 16, "finder": 16, "librari": 17, "unit": 18, "pytest": 18, "coverag": 18, "continu": 18, "integr": 18, "action": 18, "introduct": [19, 23], "overview": 19, "instal": 19, "work": 19, "packag": 19, "train": 19, "topic": 19, "unix": 19, "shell": 19, "command": 19, "gener": [20, 22, 23], "moment": [20, 22], "simul": 22, "smm": 22, "weight": 22, "matrix": 22, "w": 22, "ident": 22, "i": 22, "two": 22, "step": 22, "covari": 22, "iter": 22, "newei": 22, "west": 22, "consist": 22, "omega": 22, "hat": 22, "theta": 22, "fit": 22, "intermedi": 22, "macroeconom": 22, "score": 22, "optim": 22, "four": 22, "brock": 22, "mirman": 22, "1972": 22, "indirect": 22, "restat": 22, "hypothesi": 22, "structur": 23, "exogen": 23, "variabl": 23, "endogen": 23, "process": 23, "dgp": 23, "reduc": 23, "form": 23, "calibr": 23, "differ": 23, "type": 23, "persuas": 23, "short": 23, "paper": 23}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file diff --git a/struct_est/SMM.html b/struct_est/SMM.html index 3903a25..ee60edc 100644 --- a/struct_est/SMM.html +++ b/struct_est/SMM.html @@ -1289,7 +1289,7 @@

Contents

-
mu_SMM1_1= 612.3319048024534  sig_SMM1_1= 197.26303566149244
+
mu_SMM1_1= 612.3371352249138  sig_SMM1_1= 197.26434895262162
 
@@ -1317,18 +1317,18 @@

Contents

Data mean of scores = 341.90869565217395 , Data variance of scores = 7827.997292398056
 
-Model mean 1 = 341.6690130387879 , Model variance 1 = 7827.866466512297
+Model mean 1 = 341.6692110494425 , Model variance 1 = 7827.864496338213
 
-Error vector 1 = [-7.01013506e-04 -1.67125614e-05]
+Error vector 1 = [-7.00434373e-04 -1.69642445e-05]
 
 Results from scipy.opmtimize.minimize:
   message: CONVERGENCE: NORM_OF_PROJECTED_GRADIENT_<=_PGTOL
   success: True
    status: 0
-      fun: 4.916992449560748e-07
+      fun: 4.908960959342433e-07
         x: [ 6.123e+02  1.973e+02]
       nit: 17
-      jac: [-7.454e-07  2.357e-06]
+      jac: [-7.436e-07  2.350e-06]
      nfev: 72
      njev: 24
  hess_inv: <2x2 LbfgsInvHessProduct with dtype=float64>
@@ -1453,19 +1453,19 @@ 

Contents

Jacobian matrix of derivatives of moment error functions is:
-[[ 0.0008975  -0.00290434]
- [-0.00114133  0.004457  ]]
+[[ 0.00089749 -0.00290433]
+ [-0.00114132  0.00445698]]
 
 Weighting matrix W is:
 [[1. 0.]
  [0. 1.]]
 
 Variance-covariance matrix of estimated parameter vector is:
-[[602499.98744184 163793.83380005]
- [163793.83380005  44881.85524372]]
+[[602535.18442996 163802.17330123]
+ [163802.17330123  44883.79092131]]
 
-Std. err. mu_hat= 776.2087267235777
-Std. err. sig_hat= 211.8533814781294
+Std. err. mu_hat= 776.23139876583
+Std. err. sig_hat= 211.85794986573154
 
@@ -1554,12 +1554,12 @@

Contents

2nd stage est. of var-cov matrix of moment error vec across sims:
-[[ 0.00033411 -0.00142288]
- [-0.00142288  0.01592874]]
+[[ 0.00033411 -0.00142289]
+ [-0.00142289  0.01592879]]
 
 2nd state est. of optimal weighting matrix:
-[[4830.85282784  431.53075653]
- [ 431.53075653  101.32740541]]
+[[4830.88530228  431.53378728]
+ [ 431.53378728  101.32749623]]
 
@@ -1577,7 +1577,7 @@

Contents

-
mu_SMM2_1= 619.4295828414915  sig_SMM2_1= 199.0745499003818
+
mu_SMM2_1= 619.4303074248937  sig_SMM2_1= 199.0747813692372
 
@@ -1607,15 +1607,15 @@

Contents

[-0.0011259 0.00443426]] Weighting matrix W is: -[[4830.85282784 431.53075653] - [ 431.53075653 101.32740541]] +[[4830.88530228 431.53378728] + [ 431.53378728 101.32749623]] Variance-covariance matrix of estimated parameter vector is: -[[2397.35566572 745.28979427] - [ 745.28979427 232.01568064]] +[[2397.38054356 745.29670501] + [ 745.29670501 232.01757158]] -Std. err. mu_hat= 48.96279879380848 -Std. err. sig_hat= 15.232060945338231 +Std. err. mu_hat= 48.963052841479445 +Std. err. sig_hat= 15.232123016118733
@@ -1865,7 +1865,7 @@

Contents

-
mu_SMM4_1= 362.560593472098  sig_SMM4_1 46.57515195652185
+
mu_SMM4_1= 362.560593472098  sig_SMM4_1 46.5751519565219
   message: CONVERGENCE: REL_REDUCTION_OF_F_<=_FACTR*EPSMCH
   success: True
    status: 0
@@ -2016,8 +2016,8 @@ 

Contents

[[33.48770545 23.53170341] [23.53170341 18.13459776]] -Std. err. mu_hat= 5.786856266717139 -Std. err. sig_hat= 4.258473642422251 +Std. err. mu_hat= 5.786856266717126 +Std. err. sig_hat= 4.258473642422245
@@ -2139,11 +2139,11 @@

Contents

-
mu_SMM4_2= 362.5605400454758  sig_SMM4_2 46.57507128065559
+
mu_SMM4_2= 362.5605400454758  sig_SMM4_2 46.57507128065564
  message: Optimization terminated successfully
  success: True
   status: 0
-     fun: 0.9984266286568925
+     fun: 0.9984266286568926
        x: [ 3.626e+02  4.658e+01]
      nit: 1
      jac: [ 5.467e-02  8.255e-02]
@@ -2188,7 +2188,7 @@ 

Contents

Error vector (pct. dev.) = [-0.98 0.04678571 0.11720721 -0.075 ] -Criterion func val = 0.9984266286568925 +Criterion func val = 0.9984266286568926
@@ -2273,8 +2273,8 @@

Contents

[[3.53697411 2.47391182] [2.47391182 1.77184156]] -Std. err. mu_hat= 1.8806844791000032 -Std. err. sig_hat= 1.3311053920876743 +Std. err. mu_hat= 1.8806844791000217 +Std. err. sig_hat= 1.3311053920876885