Interpolation methods - GerardoLopez/TATSSI GitHub Wiki
Interpolation methods in TATSSI
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.