<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/financial.py, branch v1.18.0</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>DOC: lib: Fix deprecation markup in financial function docstrings.</title>
<updated>2019-10-20T03:51:51+00:00</updated>
<author>
<name>Warren Weckesser</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2019-10-18T23:26:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6777e0580130b2ad18b9405aff07a29b0a495669'/>
<id>6777e0580130b2ad18b9405aff07a29b0a495669</id>
<content type='text'>
The original version doesn't render correctly; see, for example,
https://numpy.org/devdocs/reference/generated/numpy.mirr.html#numpy.mirr

The HTML output for the updated markup looks much better.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The original version doesn't render correctly; see, for example,
https://numpy.org/devdocs/reference/generated/numpy.mirr.html#numpy.mirr

The HTML output for the updated markup looks much better.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: deprecate financial functions.</title>
<updated>2019-10-16T19:57:10+00:00</updated>
<author>
<name>Warren Weckesser</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2019-10-15T21:31:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9c856a976e3e238f3b355cd66b74ece06ad121ce'/>
<id>9c856a976e3e238f3b355cd66b74ece06ad121ce</id>
<content type='text'>
As per NEP-32, the financial functions are deprecated.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As per NEP-32, the financial functions are deprecated.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Move NPV-IRR congruence check to tests</title>
<updated>2019-09-14T09:14:03+00:00</updated>
<author>
<name>kai-striega</name>
<email>kaistriega@gmail.com</email>
</author>
<published>2019-09-14T05:45:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=594d0c39bd7baf9575411b4a9689ec0bd564c930'/>
<id>594d0c39bd7baf9575411b4a9689ec0bd564c930</id>
<content type='text'>
The internal rate of return (irr) is defined as the rate of return
required for the net present values of a series of cashflows to be
zero. i.e the lowest rate of return required for a project to break
even.

This is currently checked by refering to the example output from
the ``irr`` and ``npv`` function documentation. This commit adds a
test to confirm the identity holds.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The internal rate of return (irr) is defined as the rate of return
required for the net present values of a series of cashflows to be
zero. i.e the lowest rate of return required for a project to break
even.

This is currently checked by refering to the example output from
the ``irr`` and ``npv`` function documentation. This commit adds a
test to confirm the identity holds.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Add warning message to np.npv docs</title>
<updated>2019-09-14T05:44:36+00:00</updated>
<author>
<name>kai-striega</name>
<email>kaistriega@gmail.com</email>
</author>
<published>2019-09-14T05:18:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=58dc45505b3d3e2b9de1a6961a749c8bd1165548'/>
<id>58dc45505b3d3e2b9de1a6961a749c8bd1165548</id>
<content type='text'>
``np.npv`` calculates the present value of a series of cashflows
starting in the present (t=0). Another common definition of NPV
uses the future cashflows i.e. starting at the end of the first
period.

The difference in definition can lead to confusion for users moving
between NumPy and other projects [1] and adds complexity for
maintainers [2]. This commit adds a warning to the ``npv``
function's documentation and adds an example on how to find the npv
of a project using the alternate definition.

[1] https://github.com/numpy/numpy/issue/10877
[2] https://github.com/numpy/numpy/pull/3346
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
``np.npv`` calculates the present value of a series of cashflows
starting in the present (t=0). Another common definition of NPV
uses the future cashflows i.e. starting at the end of the first
period.

The difference in definition can lead to confusion for users moving
between NumPy and other projects [1] and adds complexity for
maintainers [2]. This commit adds a warning to the ``npv``
function's documentation and adds an example on how to find the npv
of a project using the alternate definition.

[1] https://github.com/numpy/numpy/issue/10877
[2] https://github.com/numpy/numpy/pull/3346
</pre>
</div>
</content>
</entry>
<entry>
<title>TST, DOC: enable refguide_check</title>
<updated>2018-12-14T18:14:05+00:00</updated>
<author>
<name>Tyler Reddy</name>
<email>tyler.je.reddy@gmail.com</email>
</author>
<published>2018-11-14T19:36:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=250861059b106371cb232456eeccd6d9e97d8f00'/>
<id>250861059b106371cb232456eeccd6d9e97d8f00</id>
<content type='text'>
* ported the refguide_check module from SciPy for usage
in NumPy docstring execution/ verification; added the
refguide_check run to Azure Mac OS CI

* adjusted NumPy docstrings such that refguide_check passes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ported the refguide_check module from SciPy for usage
in NumPy docstring execution/ verification; added the
refguide_check run to Azure Mac OS CI

* adjusted NumPy docstrings such that refguide_check passes
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: set preferred __module__ for numpy functions</title>
<updated>2018-10-23T14:57:40+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-10-23T14:53:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8bab96faf2cb740536712e49e92e133626087018'/>
<id>8bab96faf2cb740536712e49e92e133626087018</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: __array_function__ for np.lib, part 1</title>
<updated>2018-10-08T19:52:55+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-10-08T19:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4141e24fc201f8cf76180ca69eaa2d89eafaee58'/>
<id>4141e24fc201f8cf76180ca69eaa2d89eafaee58</id>
<content type='text'>
np.lib.arraypad through np.lib.nanfunctions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
np.lib.arraypad through np.lib.nanfunctions
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add Decimal support to numpy.lib.financial (#9952)</title>
<updated>2017-11-12T00:49:35+00:00</updated>
<author>
<name>Garry Polley</name>
<email>garrympolley@gmail.com</email>
</author>
<published>2017-11-12T00:49:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8d3c5e1cefe30cce0a5a102c86cde14a6a0802f1'/>
<id>8d3c5e1cefe30cce0a5a102c86cde14a6a0802f1</id>
<content type='text'>
Adds support for Decimal to the rate, pv, fv, pmt, ppmt, ipmt, mirr, npv functions

Closes #9781</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds support for Decimal to the rate, pv, fv, pmt, ppmt, ipmt, mirr, npv functions

Closes #9781</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: financial.pmt modifies input #8055</title>
<updated>2016-09-23T23:04:14+00:00</updated>
<author>
<name>naveenarun</name>
<email>notatroll.troll@gmail.com</email>
</author>
<published>2016-09-22T04:31:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=36f88442209e74f0fcb63ec2aa3868b63f7dafb4'/>
<id>36f88442209e74f0fcb63ec2aa3868b63f7dafb4</id>
<content type='text'>
financial.pmt masked rate array in place, changing rate array.
Changed to mask to a new array, preserving the original rate array.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
financial.pmt masked rate array in place, changing rate array.
Changed to mask to a new array, preserving the original rate array.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG : financial.pmt modifies input (issue #8055)</title>
<updated>2016-09-19T02:00:24+00:00</updated>
<author>
<name>KhaledTo</name>
<email>khaled.ben.okuda@gmail.com</email>
</author>
<published>2016-09-19T02:00:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7c8043e19f5b35df153e8a5057f6f1db92b43dde'/>
<id>7c8043e19f5b35df153e8a5057f6f1db92b43dde</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
