summaryrefslogtreecommitdiff
path: root/doc/release/upcoming_changes/16248.new_feature.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/release/upcoming_changes/16248.new_feature.rst')
-rw-r--r--doc/release/upcoming_changes/16248.new_feature.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/doc/release/upcoming_changes/16248.new_feature.rst b/doc/release/upcoming_changes/16248.new_feature.rst
deleted file mode 100644
index 823646d00..000000000
--- a/doc/release/upcoming_changes/16248.new_feature.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-Digitize Keyword Egde
----------------------
-A keyword argument has been added to `np.digitize` so that the
-edge case is covered in the last bin. For example,
-
-```
-x = [1, 2, 3]
-bins = [0, 1.5, 3]
-```
-
-`np.digitize(x, bins, right=False, edge=True)` yields `[1, 2, 2]`
-whereas before the edge keyword argument existed it would yield
-`[1, 2, 3]`. \ No newline at end of file