Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/numpy/numpy-financial
Standalone package of the NumPy financial functions
https://github.com/numpy/numpy-financial
Last synced: 3 days ago
JSON representation
Standalone package of the NumPy financial functions
- Host: GitHub
- URL: https://github.com/numpy/numpy-financial
- Owner: numpy
- License: bsd-3-clause
- Created: 2019-09-25T19:35:09.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T07:20:52.000Z (3 months ago)
- Last Synced: 2024-10-29T14:58:24.356Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 662 KB
- Stars: 340
- Watchers: 26
- Forks: 80
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# NumPy Financial
The `numpy-financial` package contains a collection of elementary financial
functions.The [financial functions in NumPy](https://numpy.org/doc/1.17/reference/routines.financial.html)
are deprecated and eventually will be removed from NumPy; see
[NEP-32](https://numpy.org/neps/nep-0032-remove-financial-functions.html)
for more information. This package is the replacement for the original
NumPy financial functions.The source code for this package is available at https://github.com/numpy/numpy-financial.
The importable name of the package is `numpy_financial`. The recommended
alias is `npf`. For example,```
>>> import numpy_financial as npf
>>> npf.irr([-250000, 100000, 150000, 200000, 250000, 300000])
0.5672303344358536
```