From 9b88034e92794d814bb033f72302a55ca19abdf2 Mon Sep 17 00:00:00 2001 From: Kelsey Jordahl Date: Wed, 15 Jun 2016 12:47:52 -0700 Subject: DOC: Update float32 mean example in docstring --- numpy/core/fromnumeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/fromnumeric.py') 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: -- cgit v1.2.1