Module Values_0.TimeSeriesConfigSource

The collection of components that defines the time-series.

Sourcetype nonrec t = {
  1. targetAttributeName : TargetAttributeName.t;
    (*

    The name of the column representing the target variable that you want to predict for each item in your dataset. The data type of the target variable must be numerical.

    *)
  2. timestampAttributeName : TimestampAttributeName.t;
    (*

    The name of the column indicating a point in time at which the target value of a given item is recorded.

    *)
  3. itemIdentifierAttributeName : ItemIdentifierAttributeName.t;
    (*

    The name of the column that represents the set of item identifiers for which you want to predict the target value.

    *)
  4. groupingAttributeNames : GroupingAttributeNames.t option;
    (*

    A set of columns names that can be grouped with the item identifier column to create a composite key for which a target value is predicted.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupingAttributeNames:??? -> targetAttributeName:TargetAttributeName.t -> timestampAttributeName:TimestampAttributeName.t -> itemIdentifierAttributeName:ItemIdentifierAttributeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GroupingAttributeName.t ] list | `String of TargetAttributeName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t