You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/struct_est/MLE.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,26 +104,25 @@ The maximum likelihood estimate of $\rho$, $\mu$, and $\sigma$ is given by the f
104
104
(SecMLE_DistData)=
105
105
## Comparisons of distributions and data
106
106
107
-
Import some data from the total points earned by all the students in two sections of an intermediate macroeconomics class for undergraduates at an unnamed University in a certain year (two semesters).
107
+
Import some data from the total points earned by all the students in two sections of an intermediate macroeconomics class for undergraduates at an unnamed University in a certain year (two semesters). Let's create a histogram of the data.
108
108
109
109
```{code-cell} ipython3
110
-
:tags: ["remove-output"]
110
+
:tags: []
111
111
112
112
# Import the necessary libraries
113
113
import numpy as np
114
+
import matplotlib.pyplot as plt
115
+
import requests
114
116
115
117
# Download and save the data file Econ381totpts.txt as NumPy array
0 commit comments