time_stream.infill.QuadraticInterpolation

class time_stream.infill.QuadraticInterpolation(**kwargs)[source]

Quadratic spline interpolation (Convenience wrapper around B-spline with order=2). https://docs.scipy.org/doc/scipy-1.16.1/reference/generated/scipy.interpolate.make_interp_spline.html

__init__(**kwargs)[source]

Initialize quadratic interpolation.

Methods

__init__(**kwargs)

Initialize quadratic interpolation.

apply(df, time_name, periodicity, infill_column)

Apply the infill method to the time series data.

available()

Return a sorted list of available registered keys.

get(spec, **kwargs)

Resolve spec to an instance of Self:

register(register_cls)

A method used as a decorator for subclasses to add to the register by its name attribute.

Attributes

min_points_required

B-spline needs at least order+1 points.

name