diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-07-08 15:47:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 15:47:00 -0600 |
commit | d89bc4bbf541affbcf87498ff4af86b9451480cd (patch) | |
tree | 0e5abbb2b4c7448ced954a782c64be82f16d4561 /doc | |
parent | a56c4e6251d6e607759788727ede2fe2f10a417b (diff) | |
parent | 8ea9e8bf13e4292d02e9ea5af2f4d10c07e02459 (diff) | |
download | numpy-d89bc4bbf541affbcf87498ff4af86b9451480cd.tar.gz |
Merge pull request #11531 from eric-wieser/histogramdd-density-no-deprecation
ENH: Add density argument to histogramdd.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.15.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.15.0-notes.rst b/doc/release/1.15.0-notes.rst index 8961de300..728465f1e 100644 --- a/doc/release/1.15.0-notes.rst +++ b/doc/release/1.15.0-notes.rst @@ -277,6 +277,12 @@ The ``range`` argument of `histogramdd` can now contain ``None`` values to indicate that the range for the corresponding axis should be computed from the data. Previously, this could not be specified on a per-axis basis. +The normed arguments of ``histogramdd`` and ``histogram2d`` have been renamed +----------------------------------------------------------------------------- +These arguments are now called ``density``, which is consistent with +``histogram``. The old argument continues to work, but the new name should be +preferred. + ``np.r_`` works with 0d arrays, and ``np.ma.mr_`` works with ``np.ma.masked`` ---------------------------------------------------------------------------- 0d arrays passed to the `r_` and `mr_` concatenation helpers are now treated as |