numpy-financial icon indicating copy to clipboard operation
numpy-financial copied to clipboard

Standalone package of the NumPy financial functions

Results 27 numpy-financial issues
Sort by recently updated
recently updated
newest added

Hello! I added PI value calculator as a function which returns the profitability of a project. Reference: https://en.wikipedia.org/wiki/Profitability_index Interpretation: PI > 1: project is acceptable PI < 1: project is...

The Open Document Format for Office Applications (OpenDocument)v1.2 on which numpy-financial is based specifies two functions which are currently not implemented: CUMPRINC and CUMIPMT. These functions calculate the cumulative principal...

enhancement

**The pmt() function of numpy_financial is too slow** and can become the main bottleneck in all those cases where it must be run thousands, if not millions of times -...

enhancement

Hello, My apologies if this isn't the right place to post, I am a simple user rather than a developer. I just couldn't find a more appropriate location for this...

## Documentation To calculate the monthly rate, you should calculate as `(1 + annual_rate) ** (1/12) - 1` rather than simply divide it by 12. ``` Examples -------- >>> import...

Both [Excel](https://support.office.com/en-us/article/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d) and [LibreOffice](https://wiki.documentfoundation.org/Documentation/Calc_Functions/XIRR) provide XIRR to calculate the IRR for non-periodic cash flows. Do we have a plan to add this feature?

enhancement

Within a code, I compute the IRR of a set of 1000 cashflows with numpy-financials ("npf"). Each time the code stops and delivers the following message : ``` File "C:\Users\navag\anaconda3\envs\tf2\lib\site-packages\numpy_financial\_financial.py",...

The implementation of e.g. `nper`: https://github.com/numpy/numpy-financial/blob/master/numpy_financial/_financial.py#L229 requires the usual “split the array up using boolean indexes and then do different things to each hunk” stuff that you have to do...

enhancement
help wanted
question

cc @Kai-Striega I'll self-review in a moment to explain the motivation for the changes

This PR documents how to build the NumPy-Financial documentation and website. closes #89

documentation