On this page
numpy.polynomial.polynomial.Polynomial.cutdeg
method
Polynomial.cutdeg(deg)[source]- 
    
Truncate series to the given degree.
Reduce the degree of the series to
degby discarding the high order terms. Ifdegis greater than the current degree a copy of the current series is returned. This can be useful in least squares where the coefficients of the high degree terms may be very small.New in version 1.5.0.
Parameters: - 
           
deg : non-negative int - 
           
The series is reduced to degree
degby discarding the high order terms. The value ofdegmust be a non-negative integer. 
Returns: - 
           
new_series : series - 
           
New instance of series with reduced degree.
 
 - 
           
 
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
 https://docs.scipy.org/doc/numpy-1.16.1/reference/generated/numpy.polynomial.polynomial.Polynomial.cutdeg.html