Title | Link | |
---|---|---|
1 | Course Introduction | Introduction |
2 | Literature (Theory) | R.Lapinskas, Practical Econometrics I. Regression Models (Lecture Notes) |
3 | Literature (Practice) | R.Lapinskas, Practical Econometrics I. Regression Models (Computer Labs) |
[(LINK) A First Lesson In Econometrics (2 pages)]
Title | Link | |
---|---|---|
1 | Lecture Notes (updated for each lecture) | Link |
2 | Univariate Regression Tasks | Link |
Univariate Regression Example with wage dataset Other Univariate Regression Examples | [HTML (R)] [.ipynb] [.7zip] Link |
|
3 | Multiple Regression Tasks (updated for each lecture) | Link |
4 | Multiple Regression Example with wage dataset | [HTML (Python)], [.zip], [.ipynb] [HTML (R)], [.ipynb] |
5 | Discrete Response Model Tasks | Link |
6 | Discrete Response Model Example with labor force participation dataset | [HTML (R)], [.ipynb] |
7 | EXTRA TASK | Link |
To use Cramer-von-Mises test in Python:
pip install scikit-gof
import skgof as skgof
skgof.cvm_test(data = my_model.resid, dist = stats.norm(0, np.sqrt(np.var(my_model.resid))))[1]