Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Here is an example:
/** * Summarize a DataSet of Tuples by collecting single pass statistics for all columns */ public Tuple summarize() Dataset<Tuple3<Double, String, Boolean>> input = // [...] Tuple3<DoubleColumnSummary,StringColumnSummary,BooleanColumnSummary> summary = input.summarize() summary.getField(0).stddev() summary.getField(1).maxStringLength()