Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/statisticsnorway/ssb-model-solver
Class to define, block analyse and solve dynamic and algebraic models numerically
https://github.com/statisticsnorway/ssb-model-solver
ssb-project
Last synced: 6 days ago
JSON representation
Class to define, block analyse and solve dynamic and algebraic models numerically
- Host: GitHub
- URL: https://github.com/statisticsnorway/ssb-model-solver
- Owner: statisticsnorway
- License: mit
- Created: 2023-03-14T13:13:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T02:09:46.000Z (8 months ago)
- Last Synced: 2024-04-16T02:08:38.565Z (8 months ago)
- Topics: ssb-project
- Language: Python
- Homepage:
- Size: 6.08 MB
- Stars: 4
- Watchers: 7
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSB Model Solver
[![PyPI](https://img.shields.io/pypi/v/ssb-model-solver.svg)][pypi status]
[![Status](https://img.shields.io/pypi/status/ssb-model-solver.svg)][pypi status]
[![Python Version](https://img.shields.io/pypi/pyversions/ssb-model-solver)][pypi status]
[![License](https://img.shields.io/pypi/l/ssb-model-solver)][license][![Documentation](https://github.com/statisticsnorway/ssb-model-solver/actions/workflows/docs.yml/badge.svg)][documentation]
[![Tests](https://github.com/statisticsnorway/ssb-model-solver/actions/workflows/tests.yml/badge.svg)][tests]
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=statisticsnorway_ssb-model-solver&metric=coverage)][sonarcov]
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=statisticsnorway_ssb-model-solver&metric=alert_status)][sonarquality][![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)][poetry][pypi status]: https://pypi.org/project/ssb-model-solver/
[documentation]: https://statisticsnorway.github.io/ssb-model-solver
[tests]: https://github.com/statisticsnorway/ssb-model-solver/actions?workflow=Tests[sonarcov]: https://sonarcloud.io/summary/overall?id=statisticsnorway_ssb-model-solver
[sonarquality]: https://sonarcloud.io/summary/overall?id=statisticsnorway_ssb-model-solver
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/black
[poetry]: https://python-poetry.org/`ModelSolver` is a class that defines, block analyses and solves dynamic and algebraic models numerically.
See [documentation](https://github.com/statisticsnorway/model-solver/blob/main/model-solver.pdf) for detailed information about theory and implementation of the class.Opprettet av:
Magnus Kvåle Helliesen## Features
ModelSolver is a Python class. It defines, analyses and solves dynamic algebraic model with lots of equations.
The package is imported using
```python
import model_solver as ms
```Usage is
```python
model = ms.ModelSolver(equations, endogenous)
```where `equations` are equations and `endogenous` are endogenous variables, both stored as strings in lists.
## Built with
ModelSolver uses the following packages
* [NumPy](https://numpy.org/)
* [NetworkX](https://networkx.org/)
* [Pandas](https://pandas.pydata.org/)
* [SymEngine](https://pypi.org/project/symengine/)
* [Numba](https://numba.pydata.org/)
* [collections](https://docs.python.org/3/library/collections.html)
* [functools](https://docs.python.org/3/library/functools.html)
* [Matplotlib](https://matplotlib.org/)## Example of use
Let `equations = ['x+y = 1', 'x-y = 2']` and `endogenous = ['x', 'y']`, then the model class is initialized by```python
model = ms.ModelSolver(equations, endogenous)
```When initialized, the class reads in the equations, analyzes them for any lags, before it block analyzes it to find the smalles model blocks that must be solved simultaneously.
Note that ModelSolver is not case sensitive, such that 'x' and 'X' are the same, both in equations, lists and dataframe (below).When the class is finished initializing, the user can call the following methods:
* ```solution = model.solve(dataframe)``` where `dataframe` is a **Pandas** dataframe containing initial values for the endogenous variables and values for the exogenous variables. `solution` is a dataframe with same dimensions as `dataframe` containing the solutions for the endogenous variables.
* ```model.switch_endo_vars(old_endo_var, new_endo_var)``` switches the endogenous variables `old_endo_var` for `new_endo_var`.
* ```model.describe()``` writes out information about the model: the number of blocks, the size of the blocks etc.
* ```model.find_endo_var('var')``` returns the block number in which `var` is solved for.
* ```model.show_block(block_number)``` returns information about the block: endogenous variables, predetermined variables and equations.
* ```model.show_blocks()``` returns information about all blocks.
* ```model.trace_to_exog_vars(block_nunber)``` traces back to the exogenous variables that may affect the block.
* ```model.trace_to_exog_vals(block_nunber, period_index)``` traces back to the exogenous variable values for the period.
* ```model.draw_blockwise_graph(variable, maximum_ancestor_generations, maximum_decendants_generations)``` where `variable` is a variable of interest, and `maximum_ancestor_generations` and `maximum_decendants_generations`are non-negative integers that governs the number of generations before and after the variable to be graphed. The output is a HTML-file with a relational graph.
* ```model.sensitivity(block_nunber, period_index[, method='std', exog_subset=None])``` analyses the sensitivity of the endogenous variable in the block with respect to the exogenous variabels that determine the solution for the period.## Installation
You can install _SSB Model Solver_ via [pip] from [PyPI]:
```console
pip install ssb-model-solver
```## Usage
Please see the [Reference Guide] for details.
## Contributing
Contributions are very welcome.
To learn more, see the [Contributor Guide].## License
Distributed under the terms of the [MIT license][license],
_SSB Model Solver_ is free and open source software.## Issues
If you encounter any problems,
please [file an issue] along with a detailed description.## Credits
This project was generated from [Statistics Norway]'s [SSB PyPI Template].
[statistics norway]: https://www.ssb.no/en
[pypi]: https://pypi.org/
[ssb pypi template]: https://github.com/statisticsnorway/ssb-pypitemplate
[file an issue]: https://github.com/statisticsnorway/ssb-model-solver/issues
[pip]: https://pip.pypa.io/[license]: https://github.com/statisticsnorway/ssb-model-solver/blob/main/LICENSE
[contributor guide]: https://github.com/statisticsnorway/ssb-model-solver/blob/main/CONTRIBUTING.md
[reference guide]: https://statisticsnorway.github.io/ssb-model-solver/reference.html