Numerical analysis and applied statistics written in Julia for coursework.
Julia scripts written for a numerical analysis course, plus a set of applied
statistics algorithms. Fifty-three .jl files in two groups.
| Directory | Contents |
|---|---|
JuliaScientificSimulations |
Numerical methods and simulation scripts |
Applied Statistics Algorithms |
Statistical procedures implemented from scratch |
The point of writing these from scratch rather than calling a package is that the failure modes become visible: where an iteration stops converging, where conditioning ruins a result, where a textbook formula is numerically the wrong way to compute a correct expression.
julia script_name.jlOr from the REPL, which is faster when you are iterating because the JIT warm-up is paid once:
include("script_name.jl")If a script needs a package it will say so on the first run. Add it with:
using Pkg; Pkg.add("PackageName")See LICENSE.
Julia-Scientific/
├── Applied Statistics Algorithms/
├── JuliaScientificSimulations/
├── LICENSE
├── README.md
59 tracked files · 0.2 MB · 1 languages · last pushed 2024-09-25