gitextract_doktp_zd/ ├── .gitignore ├── LICENSE ├── README.md ├── homework_assignments/ │ ├── hw_set2/ │ │ ├── demand.m │ │ ├── main.m │ │ └── supply.m │ ├── hw_set3/ │ │ ├── company_list.csv │ │ └── company_list_corrected.csv │ └── hw_set6/ │ └── ols_via_projection/ │ ├── OLS_and_projection.ipynb │ └── trade_data.csv ├── lecture10/ │ ├── Interpolations_jl_alberto_polo.ipynb │ └── Morelli_Presentation_final.ipynb ├── lecture11/ │ ├── Scikit-Learn presentation.ipynb │ └── overfitting_noises_dcs.ipynb ├── lecture12/ │ └── mabille_julia_parallel.ipynb ├── lecture13/ │ ├── carlos_lizama_Gadfly.ipynb │ └── felipe_alves_codes/ │ ├── .ipynb_checkpoints/ │ │ ├── HANK_felipe_alves-checkpoint.ipynb │ │ └── JuliaPackages-checkpoint.ipynb │ ├── HANK_felipe_alves.ipynb │ ├── aggregate.jl │ ├── main_fig.jl │ ├── solveHJB.jl │ ├── solveKFE.jl │ ├── testing.jl │ └── twoassets.jl ├── lecture14/ │ ├── james_graham_DOLO.ipynb │ └── pre_RuixueGong.ipynb ├── lecture2/ │ ├── .pass │ ├── c_examples/ │ │ ├── ar1_sample_mean.c │ │ ├── function.c │ │ ├── function_ref.c │ │ ├── hello.c │ │ ├── hello_again.c │ │ ├── make_grid.c │ │ ├── makefile │ │ └── sin_func.c │ └── git_intro/ │ ├── Makefile │ ├── github.html │ ├── github.md │ ├── gitnotes.html │ └── gitnotes.md ├── lecture3/ │ ├── .ipynb_checkpoints/ │ │ └── command_line-checkpoint.ipynb │ └── command_line.ipynb ├── lecture5/ │ ├── .ipynb_checkpoints/ │ │ └── numpy_timing-checkpoint.ipynb │ ├── fast_loop_examples/ │ │ ├── ar1_sample_mean.c │ │ ├── ar1_sample_mean.jl │ │ ├── ar1_sample_mean.py │ │ ├── foo │ │ └── makefile │ └── numpy_timing.ipynb ├── lecture6/ │ ├── .ipynb_checkpoints/ │ │ └── IntroToJulia-checkpoint.ipynb │ ├── IntroToJulia.ipynb │ ├── JuliaPackages.ipynb │ ├── ParallelJulia.ipynb │ └── install_julia ├── lecture7/ │ └── Intro_to_pymc.ipynb ├── lecture8/ │ └── Pandas.ipynb └── lecture9/ ├── Plotly_Presentation.html └── Plotly_Presentation.ipynb