diff options
author | Martin Spacek <git@mspacek.mm.st> | 2015-02-25 23:13:19 -0800 |
---|---|---|
committer | Martin Spacek <git@mspacek.mm.st> | 2015-02-25 23:13:19 -0800 |
commit | aca82609af048971de362eb74a5f8873a45898cf (patch) | |
tree | ab4a3cf77ce5ff919a7c1ccc1f3c144dcc487e36 /numpy/lib/function_base.py | |
parent | 5e9750dee0d861342c2fe184b755454d7215f10a (diff) | |
download | numpy-aca82609af048971de362eb74a5f8873a45898cf.tar.gz |
DOC: fix typos in corrcoef()
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 2baf83830..d58492a67 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1965,11 +1965,11 @@ def corrcoef(x, y=None, rowvar=1, bias=0, ddof=None): ---------- x : array_like A 1-D or 2-D array containing multiple variables and observations. - Each row of `m` represents a variable, and each column a single + Each row of `x` represents a variable, and each column a single observation of all those variables. Also see `rowvar` below. y : array_like, optional An additional set of variables and observations. `y` has the same - shape as `m`. + shape as `x`. rowvar : int, optional If `rowvar` is non-zero (default), then each row represents a variable, with observations in the columns. Otherwise, the relationship |