Module Values_0.DataPrepSimpleAggregationFunctionSource

A simple aggregation function that performs standard statistical operations on a column.

Sourcetype nonrec t = {
  1. inputColumnName : ColumnName.t option;
    (*

    The name of the column on which to perform the aggregation function.

    *)
  2. functionType : DataPrepSimpleAggregationFunctionType.t;
    (*

    The type of aggregation function to perform, such as COUNT, SUM, AVERAGE, MIN, MAX, MEDIAN, VARIANCE, or STANDARD_DEVIATION.

    *)
}
Sourceval context_ : string
Sourceval make : ?inputColumnName:??? -> functionType:DataPrepSimpleAggregationFunctionType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ColumnName.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