Time Stepper (DP_7)

This functionality enables you to transform your data into a time series format.

A time series is a series of data points collected or recorded at regular time intervals. By transforming your data into a time series format, you can easily analyze trends and patterns over time, which can be useful for forecasting future values or making informed decisions.

The process of transforming data into a time series is simple, you just need to specify the time column and we automatically convert the data into a time series format.

Sample Request

This request steps the data per 60 entries and replaces existing data in the Y variable.

{
    "project_id": 1,
    "parent_id": 6,
    "block_id": 7,
    "function_code": "DP_7",
    "args": {
        "lookback": 60,
        "lookforward": 1,
        "index": 4
    }
}

Time Stepper

Step data into time series

POST https://autogon.ai/api/v1/engine/start

Step data per entries or replace existing data in the Y variable.

Request Body

{
    "status": "true",
    "message": {
        "id": 3,
        "project": 1,
        "block_id": 7,
        "parent_id": 6,
        "dataset_url": "",
        "x_value_url": "",
        "y_value_url": ""
    }
}
// Some code

Last updated