summaryrefslogtreecommitdiff
path: root/doc/neps
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-08-16 20:03:22 -0700
committerCharles Harris <charlesr.harris@gmail.com>2011-08-27 07:26:55 -0600
commit965e4cff5c4c50e8ff051a3363adc6cf6aa640cd (patch)
treee9b8d484dac4446ef0a3abd24d94e88922093b05 /doc/neps
parentb1cb211d159c617ee4ebd16266d6f1042417ef75 (diff)
downloadnumpy-965e4cff5c4c50e8ff051a3363adc6cf6aa640cd.tar.gz
ENH: missingdata: trying some more functions to see how they treat NAs
Diffstat (limited to 'doc/neps')
-rw-r--r--doc/neps/missing-data.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/neps/missing-data.rst b/doc/neps/missing-data.rst
index 478fe81bc..49528da41 100644
--- a/doc/neps/missing-data.rst
+++ b/doc/neps/missing-data.rst
@@ -477,7 +477,7 @@ Some examples::
>>> np.sum(a, skipna=True)
11.0
>>> np.mean(a)
- NA('<f8')
+ NA(dtype='<f8')
>>> np.mean(a, skipna=True)
3.6666666666666665
@@ -487,7 +487,7 @@ Some examples::
>>> np.max(a, skipna=True)
array(NA, dtype='<f8', maskna=True)
>>> np.mean(a)
- NA('<f8')
+ NA(dtype='<f8')
>>> np.mean(a, skipna=True)
/home/mwiebe/virtualenvs/dev/lib/python2.7/site-packages/numpy/core/fromnumeric.py:2374: RuntimeWarning: invalid value encountered in double_scalars
return mean(axis, dtype, out)