├── .gitignore ├── Central Python concepts.ipynb ├── LICENSE ├── PS0 ├── problem set 0.lyx └── problem set 0.pdf ├── PS1 ├── A1.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py ├── A6.py ├── A7.py ├── A8.py └── problem_set_1.ipynb ├── PS2 ├── A1.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py ├── A6.py ├── mymodule.py └── problem_set_2.ipynb ├── PS3 ├── A01.py ├── A02.py ├── A03.py ├── A04.py ├── A05.py ├── A06.py ├── A07.py ├── A08.py ├── A09.py ├── A10.py ├── A11.py ├── data │ └── NAH1_pivoted.xlsx └── problem_set_3.ipynb ├── PS4 ├── A1.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py ├── A6.py ├── data │ ├── bm010_ejer.xlsx │ ├── bm010_ejer_nedtagning.xlsx │ ├── bm010_parcel.xlsx │ └── bm010_parcel_nedtagning.xlsx └── problem_set_4.ipynb ├── PS5 ├── A1.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py └── problem_set_5.ipynb ├── PS6 ├── A1.py ├── A10.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py ├── A6.py ├── A7.py ├── A8.py ├── A9.py ├── numecon_linalg.py └── problem_set_6.ipynb ├── PS7 ├── A1.py ├── A10.py ├── A11.py ├── A12.py ├── A13.py ├── A14.py ├── A2.py ├── A3.py ├── A4.py ├── A5.py ├── A6.py ├── A7.py ├── A8.py ├── A9.py ├── contourplot.png ├── problem_set_7.ipynb └── surfaceplot.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/.gitignore -------------------------------------------------------------------------------- /Central Python concepts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/Central Python concepts.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/LICENSE -------------------------------------------------------------------------------- /PS0/problem set 0.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS0/problem set 0.lyx -------------------------------------------------------------------------------- /PS0/problem set 0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS0/problem set 0.pdf -------------------------------------------------------------------------------- /PS1/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A1.py -------------------------------------------------------------------------------- /PS1/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A2.py -------------------------------------------------------------------------------- /PS1/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A3.py -------------------------------------------------------------------------------- /PS1/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A4.py -------------------------------------------------------------------------------- /PS1/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A5.py -------------------------------------------------------------------------------- /PS1/A6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A6.py -------------------------------------------------------------------------------- /PS1/A7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A7.py -------------------------------------------------------------------------------- /PS1/A8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/A8.py -------------------------------------------------------------------------------- /PS1/problem_set_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS1/problem_set_1.ipynb -------------------------------------------------------------------------------- /PS2/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A1.py -------------------------------------------------------------------------------- /PS2/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A2.py -------------------------------------------------------------------------------- /PS2/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A3.py -------------------------------------------------------------------------------- /PS2/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A4.py -------------------------------------------------------------------------------- /PS2/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A5.py -------------------------------------------------------------------------------- /PS2/A6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/A6.py -------------------------------------------------------------------------------- /PS2/mymodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/mymodule.py -------------------------------------------------------------------------------- /PS2/problem_set_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS2/problem_set_2.ipynb -------------------------------------------------------------------------------- /PS3/A01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A01.py -------------------------------------------------------------------------------- /PS3/A02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A02.py -------------------------------------------------------------------------------- /PS3/A03.py: -------------------------------------------------------------------------------- 1 | # Q3 2 | dt_true.describe() 3 | -------------------------------------------------------------------------------- /PS3/A04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A04.py -------------------------------------------------------------------------------- /PS3/A05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A05.py -------------------------------------------------------------------------------- /PS3/A06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A06.py -------------------------------------------------------------------------------- /PS3/A07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A07.py -------------------------------------------------------------------------------- /PS3/A08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A08.py -------------------------------------------------------------------------------- /PS3/A09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A09.py -------------------------------------------------------------------------------- /PS3/A10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A10.py -------------------------------------------------------------------------------- /PS3/A11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/A11.py -------------------------------------------------------------------------------- /PS3/data/NAH1_pivoted.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/data/NAH1_pivoted.xlsx -------------------------------------------------------------------------------- /PS3/problem_set_3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS3/problem_set_3.ipynb -------------------------------------------------------------------------------- /PS4/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A1.py -------------------------------------------------------------------------------- /PS4/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A2.py -------------------------------------------------------------------------------- /PS4/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A3.py -------------------------------------------------------------------------------- /PS4/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A4.py -------------------------------------------------------------------------------- /PS4/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A5.py -------------------------------------------------------------------------------- /PS4/A6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/A6.py -------------------------------------------------------------------------------- /PS4/data/bm010_ejer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/data/bm010_ejer.xlsx -------------------------------------------------------------------------------- /PS4/data/bm010_ejer_nedtagning.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/data/bm010_ejer_nedtagning.xlsx -------------------------------------------------------------------------------- /PS4/data/bm010_parcel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/data/bm010_parcel.xlsx -------------------------------------------------------------------------------- /PS4/data/bm010_parcel_nedtagning.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/data/bm010_parcel_nedtagning.xlsx -------------------------------------------------------------------------------- /PS4/problem_set_4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS4/problem_set_4.ipynb -------------------------------------------------------------------------------- /PS5/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/A1.py -------------------------------------------------------------------------------- /PS5/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/A2.py -------------------------------------------------------------------------------- /PS5/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/A3.py -------------------------------------------------------------------------------- /PS5/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/A4.py -------------------------------------------------------------------------------- /PS5/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/A5.py -------------------------------------------------------------------------------- /PS5/problem_set_5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS5/problem_set_5.ipynb -------------------------------------------------------------------------------- /PS6/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A1.py -------------------------------------------------------------------------------- /PS6/A10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A10.py -------------------------------------------------------------------------------- /PS6/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A2.py -------------------------------------------------------------------------------- /PS6/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A3.py -------------------------------------------------------------------------------- /PS6/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A4.py -------------------------------------------------------------------------------- /PS6/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A5.py -------------------------------------------------------------------------------- /PS6/A6.py: -------------------------------------------------------------------------------- 1 | sm.solve(sm.sin(x)/x) -------------------------------------------------------------------------------- /PS6/A7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A7.py -------------------------------------------------------------------------------- /PS6/A8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A8.py -------------------------------------------------------------------------------- /PS6/A9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/A9.py -------------------------------------------------------------------------------- /PS6/numecon_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/numecon_linalg.py -------------------------------------------------------------------------------- /PS6/problem_set_6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS6/problem_set_6.ipynb -------------------------------------------------------------------------------- /PS7/A1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A1.py -------------------------------------------------------------------------------- /PS7/A10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A10.py -------------------------------------------------------------------------------- /PS7/A11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A11.py -------------------------------------------------------------------------------- /PS7/A12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A12.py -------------------------------------------------------------------------------- /PS7/A13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A13.py -------------------------------------------------------------------------------- /PS7/A14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A14.py -------------------------------------------------------------------------------- /PS7/A2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A2.py -------------------------------------------------------------------------------- /PS7/A3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A3.py -------------------------------------------------------------------------------- /PS7/A4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A4.py -------------------------------------------------------------------------------- /PS7/A5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A5.py -------------------------------------------------------------------------------- /PS7/A6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A6.py -------------------------------------------------------------------------------- /PS7/A7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A7.py -------------------------------------------------------------------------------- /PS7/A8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A8.py -------------------------------------------------------------------------------- /PS7/A9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/A9.py -------------------------------------------------------------------------------- /PS7/contourplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/contourplot.png -------------------------------------------------------------------------------- /PS7/problem_set_7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/problem_set_7.ipynb -------------------------------------------------------------------------------- /PS7/surfaceplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/PS7/surfaceplot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumEconCopenhagen/IntroProg-exercises/HEAD/README.md --------------------------------------------------------------------------------