diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-23 17:58:35 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:27:00 -0600 |
commit | e0b8c5cc72d9b36f13650ad53bae0a500aebb652 (patch) | |
tree | b347e7e25370467a6dab4bb854bc904b46dd554b /doc/release | |
parent | 32b32c2ac6b25f6ca867d72f23f2bb5b66d1cbee (diff) | |
download | numpy-e0b8c5cc72d9b36f13650ad53bae0a500aebb652.tar.gz |
ENH: missingdata: Add maskna= flag to np.eye constructor
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index 4150b1ee7..166fd8736 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -41,11 +41,9 @@ What doesn't work with NA: * Struct dtypes, which will have corresponding struct masks with one mask value per primitive field of the struct dtype. * UFunc.accumulate, UFunc.reduceat. - * Ufuncs calls with both NA masks and a where= mask at the same time. + * Ufunc calls with both NA masks and a where= mask at the same time. * np.logical_and, np.logical_or, np.all, and np.any don't satisfy the rules NA | True == True and NA & False == False yet. - * The reduction methods like <ndarray>.sum, etc. do not yet support - the new extended axis=, skipna= and keepdims= parameters. * Array methods: + ndarray.argmax, ndarray.argmin, + numpy.repeat, numpy.delete (relies on fancy indexing), |