FeaturesTSPeriodicityConfig#

class datarobotx.FeaturesTSPeriodicityConfig(time_steps=None, time_unit=None)#

Time series periodicity configuration.

Parameters that default to ‘None’ (or are omitted by the user) are overridden to server-side defaults at runtime. Consult the DataRobot REST API and GUI documentation for additional information on each parameter.

Parameters:
  • time_steps (int) – The number of time steps.

  • time_unit ({'MILLISECOND', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH', 'QUARTER', 'YEAR', 'ROW'}) – The time unit or ROW if windowsBasisUnit is ROW

See also

DRConfig

Configuration object for DataRobot project and autopilot settings, also includes detailed examples of usage

Attributes:

time_steps

The number of time steps.

time_unit

The time unit or ROW if windowsBasisUnit is ROW.

Inherited methods:

keys()

rtype:

Collection[str]

to_dict()

Return configuration as a dict.

property time_steps: int#

The number of time steps.

Notes

time_steps : int

property time_unit: str#

The time unit or ROW if windowsBasisUnit is ROW.

Notes

time_unit : {‘MILLISECOND’, ‘SECOND’, ‘MINUTE’, ‘HOUR’, ‘DAY’, ‘WEEK’, ‘MONTH’, ‘QUARTER’, ‘YEAR’, ‘ROW’}

to_dict()#

Return configuration as a dict.

Return type:

Dict[str, Any]