diff options
author | seberg <sebastian@sipsolutions.net> | 2015-02-26 09:11:33 +0100 |
---|---|---|
committer | seberg <sebastian@sipsolutions.net> | 2015-02-26 09:11:33 +0100 |
commit | 32e23a1d52a05d3a56f693010eaf8d96826db75f (patch) | |
tree | ab4a3cf77ce5ff919a7c1ccc1f3c144dcc487e36 /numpy/lib/function_base.py | |
parent | 5e9750dee0d861342c2fe184b755454d7215f10a (diff) | |
parent | aca82609af048971de362eb74a5f8873a45898cf (diff) | |
download | numpy-32e23a1d52a05d3a56f693010eaf8d96826db75f.tar.gz |
Merge pull request #5609 from mspacek/patch-1
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 |