-
Notifications
You must be signed in to change notification settings - Fork 9
Interpolation methods
Gerardo López-Saldaña edited this page Nov 6, 2019
·
1 revision
TATSSI stores the time series objext in a Python xarray, xarrays allows differnt interpolation methods using the interpolate_na class method.
-
When the interpolation is
linearxarray uses the numpy interpolation linear method -
For all other interpolation methods xarray uses SciPy
-
For
nearest,zero,slinear,quadratic,cubicxarray uses the inter1d class method. -
For
krog,pchip,spline, andakimaxarray uses the corresponding scipy.interpolate class method: -
For
quadraticorcubicxarray will use the interp1d class method as well.