From 3fea1e1a49b7847aaaf4ac65484b11a0126d6fb9 Mon Sep 17 00:00:00 2001 From: Joe Hamman Date: Sat, 20 Feb 2016 09:18:17 -0800 Subject: [PATCH] fix/update math with dataset docs --- doc/computation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/computation.rst b/doc/computation.rst index cc048301407..2d546e2bbe5 100644 --- a/doc/computation.rst +++ b/doc/computation.rst @@ -261,8 +261,8 @@ variables: .. ipython:: python - ds = xr.Dataset({'x_and_y': (('x', 'y'), np.random.randn(2, 3)), - 'x_only': ('x', np.random.randn(2))}, + ds = xr.Dataset({'x_and_y': (('x', 'y'), np.random.randn(3, 5)), + 'x_only': ('x', np.random.randn(3))}, coords=arr.coords) ds > 0