Smoother API (0.2)

Download OpenAPI specification:Download

API Support: support@kisanhub.com

The smoother project offers APIs for ingesting noisy sets of data and smoothing them. This includes, but isn't limited to, spatial and temporal data.

time-series

Generates smoothing for time series

Generate a smoothed series using savgol

Request Body schema: application/json
window_length
integer (WindowLength)

Window length param for savgol smoother

polyorder
integer (PolyOrder)

Polyorder param for savgol smoother

values
required
Array of numbers (Values)

Numbers to smooth

Responses

200

OK

post /time-series/savgol
/time-series/savgol

Request samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "window_length": 0,
  • "polyorder": 0,
  • "values":
    [
    ]
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "smoothed_values":
    [
    ]
}