Learn R Programming

datarobot (version 2.14.2)

RequestMultiSeriesDetection: Format a multiseries.

Description

Call this function to request the project be formatted as a multiseries project, with the dateColumn specifying the time series.

Usage

RequestMultiSeriesDetection(project, dateColumn,
  multiseriesIdColumns = NULL, maxWait = 600)

Arguments

project

character. Either (1) a character string giving the unique alphanumeric identifier for the project, or (2) a list containing the element projectId with this identifier.

dateColumn

character. The name of the column containing the date that defines the time series.

multiseriesIdColumns

character. Optional. The Series ID to demarcate the series. If not specified, DataRobot will attempt to automatically infer the series ID.

maxWait

integer. The maximum time (in seconds) to wait for the model job to complete.

Value

A named list which contains:

  • datetimePartitionColumn character. The name of the datetime partition column.

  • detectedMultiSeriesIdColumns list. Details of the detected multiseries columns:

    • multiseriesColumns character. The name of the potential multiseries ID column.

    • timeUnit character. For time series eligible features, the time unit covered by a single time step, e.g. "HOUR", or NULL for features that are not time series eligible.

    • timeStep integer. Expected difference in time units between rows in the data.

Details

Note that as of v2.13 this function no longer needs to be called directly, but is called indirectly as a part of SetTarget (which itself is called indirectly as part of StartProject) when you pass a multiseries partition using CreateDatetimePartitionSpecification.