[issue40290] Add zscore to statistics.NormalDist

2020-04-16 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40290] Add zscore to statistics.NormalDist

2020-04-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 70f027dd22d6522b777d10c250f951e5e416b93a by Raymond Hettinger in branch 'master': bpo-40290: Add zscore() to statistics.NormalDist. (GH-19547) https://github.com/python/cpython/commit/70f027dd22d6522b777d10c250f951e5e416b93a -- ___

[issue40290] Add zscore to statistics.NormalDist

2020-04-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: Trying out various names in code examples, zscore() was a clear winner over z_score(). Also, the name matches what is used in R and numpy. -- title: Add z_score to statistics.NormalDist -> Add zscore to statistics.NormalDist