This folder contains my Julia tutorials (aimed at students in finance and economics).
- Most files are jupyter notebooks. Click one of them to see it online. Sometimes it renders better if you activate the nbviewer (see the symbol in the upper right corner once you have opened the file).
- To edit and run it online, use www.JuliaBox.com. It has many packages installed. In case you need further packages, see the top menu at JuliaBox.com. To get this repository to JuliaBox, use the Download (as zip) in the Github menu, unzip, then use JuliaBox to upload.
- To edit and run it with your local Julia installation do the following: (a) start Julia; (b)
cd(file location); (c)using IJulia; (d)notebook(dir=pwd()). You clearly need IJulia to be installed for this. - The subfolder Data contains some data sets used in the programs, while the subfolder Results is for output.
On the files:
-
The .jl files are functions used in some of the notebooks.
-
Tutorial_ChapterNumber_Topic.ipynb are (relatively) short notebooks organised around different topics.
-
The current version is tested on Julia 1.0, but but should work on 0.7 too.