diff options
author | Wojciech Rzadkowski <33913808+wrzadkow@users.noreply.github.com> | 2020-06-05 19:28:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 19:28:57 +0200 |
commit | 0e2503bb6312e089b918c05ea667e5a591910903 (patch) | |
tree | 5a7fc8a13d45d2b3483693161614ec32c8befc78 /numpy/polynomial/_polybase.py | |
parent | e42b2b73641be680b7ffddffe87c0f562dd79249 (diff) | |
download | numpy-0e2503bb6312e089b918c05ea667e5a591910903.tar.gz |
DOC: expand the docstring as suggested in review
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r-- | numpy/polynomial/_polybase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py index bc0f79636..9106f9342 100644 --- a/numpy/polynomial/_polybase.py +++ b/numpy/polynomial/_polybase.py @@ -920,7 +920,7 @@ class ABCPolyBase(abc.ABC): x : array_like, shape (M,) x-coordinates of the M sample points ``(x[i], y[i])``. y : array_like, shape (M,) - y-coordinates of the sample points. + y-coordinates of the sample points ``(x[i], y[i])``. deg : int or 1-D array_like Degree(s) of the fitting polynomials. If `deg` is a single integer all terms up to and including the `deg`'th term are included in the |