All Projects → ScPo-CompEcon → Syllabus

ScPo-CompEcon / Syllabus

Syllabus for CompEcon Course

Labels

Projects that are alternatives of or similar to Syllabus

Cv Boilerplate
Programmatic generation of high-quality CVs
Stars: ✭ 967 (+2513.51%)
Mutual labels:  makefile
Android device motorola titan
Stars: ✭ 34 (-8.11%)
Mutual labels:  makefile
Coreos Nvidia
Yet another NVIDIA driver container for Container Linux (aka CoreOS)
Stars: ✭ 36 (-2.7%)
Mutual labels:  makefile
Golang Alpine Docker
Build golang binaries for alpine linux
Stars: ✭ 33 (-10.81%)
Mutual labels:  makefile
Zh Google Styleguide
Google 开源项目风格指南 (中文版)
Stars: ✭ 8,315 (+22372.97%)
Mutual labels:  makefile
Espeak Korean
Korean data for eSpeak
Stars: ✭ 34 (-8.11%)
Mutual labels:  makefile
Cderpm
RPM spec file, patches, and scripts to package up the Common Desktop Environment
Stars: ✭ 31 (-16.22%)
Mutual labels:  makefile
I2c Slave Lib
I2C slave library for AVR 8 bit mircocontrollers
Stars: ✭ 36 (-2.7%)
Mutual labels:  makefile
Mal
mal - Make a Lisp
Stars: ✭ 8,287 (+22297.3%)
Mutual labels:  makefile
Monero Gui Guide
Guide for the Monero GUI wallet
Stars: ✭ 36 (-2.7%)
Mutual labels:  makefile
Arduino Datalogging
Methods of Datalogging Sensor Data from an Arduino.
Stars: ✭ 33 (-10.81%)
Mutual labels:  makefile
Pantheios
The C/C++ Diagnostic Logging Sweetspot
Stars: ✭ 34 (-8.11%)
Mutual labels:  makefile
Android device xiaomi polaris
Stars: ✭ 35 (-5.41%)
Mutual labels:  makefile
Android device samsung serranoltexx
Stars: ✭ 33 (-10.81%)
Mutual labels:  makefile
Llvm Cheatsheet
LLVM, clang, ninja, dyld and others.
Stars: ✭ 36 (-2.7%)
Mutual labels:  makefile
Contract
My plain-language freelance contract (in Markdown).
Stars: ✭ 32 (-13.51%)
Mutual labels:  makefile
Rust Ffi Stringtools
A collection of examples how to use Rust libraries from other languages.
Stars: ✭ 34 (-8.11%)
Mutual labels:  makefile
Llvm Cookbook
llvm-cookbook samples
Stars: ✭ 37 (+0%)
Mutual labels:  makefile
Avian Pack
Avian all-inclusive. Everything needed to build Avian with (or without) Android classpath.
Stars: ✭ 36 (-2.7%)
Mutual labels:  makefile
Docker Bitcoin Regtest
A way to experiment with Bitcoin.
Stars: ✭ 35 (-5.41%)
Mutual labels:  makefile

Caution: this document is out of date. please consult the up to date version at https://floswald.github.io/NumericalMethods/

ScPo-CompEcon Syllabus

Caution: this document is out of date. please consult the up to date version at https://floswald.github.io/NumericalMethods/

  • Course: Computational Economics for PhDs
  • Teacher: Florian Oswald, [email protected]
  • Class Times: Fridays 10:15-12:15 starting 29 Jan 2021
  • Class Location: Zoom
  • Slack: There will be a slack channel for all communication

Caution: this document is out of date. please consult the up to date version at https://floswald.github.io/NumericalMethods/

Course Description

This is a course for PhD students at the Department of Economics at Sciences Po in Computational Economics.

Course Overview

In this course you will learn about some commonly used methods in Computational Economics. These methods are being used in all fields of Economics. The course has a clear focus on applying what you learn. We will cover the theoretical concepts that underlie each topic, but you should expect a fair amount of hands on action required on your behalf. In the words of the great Che-Lin Su:

Doing Computation is the only way to learn Computation. Doing Computation is the only way to learn Computation. Doing Computation is the only way to learn Computation.

True to that motto, there will be homeworks for you to try out what you learned in class. There will also be a term paper. It will be helpful to bring a laptop to the sessions if you have one.

Topics will be demonstrated through live-code examples/slides, available at https://scpo-compecon.github.io/CoursePack/.

Prerequisites

  1. You need a laptop.
  2. You should be familiar with the material from Introduction to Programming taught by Clement Mazet in M1. Check out the materials here
  3. You must sign up for a free account at github.com. Choose a reasonable user name and upload a profile picture.
  4. Before you come the first class, please do this:
    1. Download the latest stable julia release for your OS.
    2. Download the VSCode Editor

Getting Programming Skills

  1. Check out Clement Mazet's materials. You must know this level.
  2. We will be using Julia for this course.
  3. Clement in his course will introduce you to things like the Unix Shell and the verion control system Git. Both of those are very useful - for this course, and for the rest of your life as a scientist.
  4. What is Version Control? watch this 5 minute video. and go back to Clement's stuff if unclear.

Homeworks

There will be homeworks. They will be listed within the Course Outline.

Term Project

This year your term project will be to replicate a paper published in an economics journal. Ideally this would be related to your field of interest. The requirements for choice of paper to replicate are:

  1. Published version and replication kit is available online.
  2. The paper to replicate must not use julia.
  3. You must use julia for your replication.
    • Ideally your choice will involve at least some level of computational interest (i.e. more than an IV regression)
    • However, you can replicate a paper with an IV regression, but you have to go all the way to get the exact same results as in the paper. I.e. if the author typed the stata command ivreg2 lw s expr tenure rns smsa _I* (iq=med kww age), cluster(year) you will have to write (or find) julia code which will match all output from this, including standard errors. I do not recommend to do this.
  4. You need to set up a public github repository where you will build a documentation website of your implementation. You'll learn how to do this in the course.
  5. I encourage you to let the world know about your replication effort via social media and/or email to the authors directly. This is independent of whether you were able or not to replicate the results. Replication is not about finding errors in other peoples' work. If you are able to replicate some result in julia, this may be very interesting for others.

Grade

Your grade will be 60% homeworks, 40% term project.

Textbooks

There are some excellent references for computational methods out there. This course will use material from

Course Schedule

1. Programming languages and why julia

  1. Talk through homework requirements
  2. Talk through term project requirements
  3. Show where material is and do first set of slides.

Homework

Optional Julia Workouts

  • https://exercism.io/ offers some simple coding exercises. I highly recommend those if you want to get some extra practice - particularly in the beginning!

2. julia setup and Getting Started

  • Setup environment
  • Tools and Editors
  • Examples
  • Types
  • Essentials
  • Speed
  • Data and Statistical Packages

3. Integration and Function Approximation

  1. Numerical Integration
    • Monte-Carlo integration
    • Gaussian Quadrature
    • Multidimensional Quadrature
      • Quadrature with correlated shocks
  2. Function Approximation
    • Polynomial Interpolation
      • Basis functions and Coefficients
    • Regression as Approximation
    • Colocation Methods
    • Multidimensional Approximation
      • The Smolyak Grid

4. Optimisation 1

  1. Intro
  2. Conditions for Optima
  3. Derivatives and Gradients
  4. Numerical Differentiation
  5. JuliaOpt

5. Optimisation 2

  1. Bracketing
  2. Local Descent
  3. First/Second Order and Direct Methods
  4. Constraints

6. Numerical Dynamic Programming

  • Review of DP theory
  • Different Solution methods for different cases
  • Solving the Growth Model in 7 Different ways

7. Constrained Optimisation Applications as MPECs

  • What is an MPEC?
  • How can we cast constrained problems as MPECs?

Applications:

  1. MPEC on John Rust's Bus Engine Replacement
  2. The Berry-Levinsohn-Pakes (BLP) paper as constrainted optimization problems

8. HPC julia

  • Brief intro to parallel computing concepts
  • Parallel computing with julia
  • GPU computing with julia

9. Rust Bus Model


10. Intro to Machine Learning with julia


11. The julia ML stack


12. julia ML applications


Statements on Plagiarism

We will try to honour Science Po's anti-plagiarism policy:

Plagiarism occurs when a student submits work that does not allow one to distinguish the student's own thoughts from those of other authors: it can be characterised by the absence of citation of a group of consecutive words (five or more), by reformulation or translation, or by copying directly." (article on intellectual honesty)

Related to Plagiarism

Reuse and building upon ideas or code are major parts of modern software development. As an economist writing code, you will (hopefully) never write anything from scratch. This class is structured such that all solutions are public. You are encouraged to learn from the work of your peers. As I said above, I won't hunt down people who are simply copying-and-pasting solutions, because without challenging themselves, they are simply wasting their time and money taking this class.

Please respect the terms of use and/or license of any code you find, and if you reimplement or duplicate an algorithm or code from elsewhere, credit the original source with an inline comment.

License

I took the setup for the structure of this course from https://github.com/advanced-js taught by Aidan Feldman and team at NYU, and I would like to thankfully acknowledge making the materials useable to other teachers. The same license applies (below). The coursepack material is based on Chris Rackauckas' excellent Julia Intro. The license allows you to copy and use everything here, under the condition that you attribute the work (details in the license). The copyright notice to be included in any such copies and other derivative work is:

Copyright 2020 Florian Oswald, Sciences Po Paris, [email protected]

Thank you.

Creative Commons License
This work and all other materials under https://github.com/ScPo-CompEcon are licensed under a Creative Commons Attribution 4.0 International License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].