diff options
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 3741d821d..345ecff73 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -2844,7 +2844,7 @@ def mean(a, axis=None, dtype=None, out=None, keepdims=False): >>> a[0, :] = 1.0 >>> a[1, :] = 0.1 >>> np.mean(a) - 0.546875 + 0.54999924 Computing the mean in float64 is more accurate: |