Values_0.DataPrepSimpleAggregationFunctionSourceA simple aggregation function that performs standard statistical operations on a column.
type nonrec t = {inputColumnName : ColumnName.t option;The name of the column on which to perform the aggregation function.
*)functionType : DataPrepSimpleAggregationFunctionType.t;The type of aggregation function to perform, such as COUNT, SUM, AVERAGE, MIN, MAX, MEDIAN, VARIANCE, or STANDARD_DEVIATION.
*)}val make :
?inputColumnName:??? ->
functionType:DataPrepSimpleAggregationFunctionType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ColumnName.t ]) list ]