https://github.com/tpapp/numericalexample.jl
Some examples of solving an economic models in Julia using spectral methods.
https://github.com/tpapp/numericalexample.jl
Last synced: 3 months ago
JSON representation
Some examples of solving an economic models in Julia using spectral methods.
- Host: GitHub
- URL: https://github.com/tpapp/numericalexample.jl
- Owner: tpapp
- License: mit
- Created: 2024-06-20T14:10:31.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T00:21:30.000Z (over 1 year ago)
- Last Synced: 2025-09-12T14:29:51.063Z (9 months ago)
- Language: Julia
- Size: 459 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NumericalExample.jl

[](https://github.com/tpapp/NumericalExample.jl/actions?query=workflow%3ACI)
[](https://tpapp.github.io/NumericalExample.jl/dev)
## Overview
This a demonstration of numerical model solving and a basic policy analysis environment in Julia.
The emphasis is on showcasing good practices for
1. software documentation, including docstrings in the [source code](./src/NumericalExample.jl) and the [generated documentation](https://tpapp.github.io/NumericalExample.jl/dev)
2. unit [tests](./test/runtest.jl) that ensure the code is always in a correct state,
3. some interactive [analysis and plotting](https://www.tamaspapp.eu/NumericalExample.jl/dev/application/),
4. scientific software development.
Because of the focus on the above, the model is kept trivially simple. An actual economic model would be more complex and be calibrated/estimated using data (which here is omitted for simplicity), but code would be organized along the same principles.
## Installation
This is not registered package. Install in an interactive environment with
```julia
julia> ]add https://github.com/tpapp/NumericalExample.jl
```
Julia's package delivery mechanism ensures that all required packages are installed. The [manifest](./Manifest.toml) is commiteed to the repository so you get the exact same versions — this is important for scientific code.