what exactly is the "order"-parameter in pandas interpolation?
what exactly is the order-parameter in pandas interpolation?
it is mentioned in the doc:
‘nearest’, ‘zero’, ‘slinear’, ‘quadratic’, ‘cubic’, ‘spline’, ‘barycentric’, ‘polynomial’: Passed to scipy.interpolate.interp1d. These methods use the numerical values of the index. Both ‘polynomial’ and ‘spline’ require that you also specify an order (int), e.g. df.interpolate(method='polynomial', order=5).
Topic mathematics interpolation parameter pandas python
Category Data Science