You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using numpy.polyfit(), which is now described as "part of the old polynomial API"—NumPy 1.4 introduced the numpy.polynomial package, and the old numpy.poly1d class is considered legacy.
According to the transition guide, we would instead use the Polynomial class.
The new API has significant differences including the ordering of the coefficients for the polynomial expressions.
The text was updated successfully, but these errors were encountered:
We are using
numpy.polyfit()
, which is now described as "part of the old polynomial API"—NumPy 1.4 introduced thenumpy.polynomial
package, and the oldnumpy.poly1d
class is considered legacy.According to the transition guide, we would instead use the
Polynomial
class.The new API has significant differences including the ordering of the coefficients for the polynomial expressions.
The text was updated successfully, but these errors were encountered: