diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-03-28 13:04:10 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-03-28 13:04:10 -0600 |
commit | 9fc98aed1473e73dc8bd97ca79728c400fcc3d37 (patch) | |
tree | 089a90133285f2bb16fe7187d1ad1a73870a5122 /numpy/polynomial/polynomial.py | |
parent | 2baee6da0913f26d44bb7ada6976d3d076d23aab (diff) | |
parent | 5bff3380b1c649d707bfc35a66b1e53ee3482025 (diff) | |
download | numpy-9fc98aed1473e73dc8bd97ca79728c400fcc3d37.tar.gz |
Merge pull request #4566 from juliantaylor/na-doc
DOC: remove obsolete NA reference from polyfit docs
Diffstat (limited to 'numpy/polynomial/polynomial.py')
-rw-r--r-- | numpy/polynomial/polynomial.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/polynomial/polynomial.py b/numpy/polynomial/polynomial.py index 97f4fd148..60aaff83f 100644 --- a/numpy/polynomial/polynomial.py +++ b/numpy/polynomial/polynomial.py @@ -1208,11 +1208,6 @@ def polyfit(x, y, deg, rcond=None, full=False, w=None): where `n` is `deg`. - Since numpy version 1.7.0, polyfit also supports NA. If any of the - elements of `x`, `y`, or `w` are NA, then the corresponding rows of the - linear least squares problem (see Notes) are set to 0. If `y` is 2-D, - then an NA in any row of `y` invalidates that whole row. - Parameters ---------- x : array_like, shape (`M`,) |