AggAllNumericCols performs aggregation using given standard aggregation function across all splits, for all number-valued columns in the table.
(spl *table.Splits, stat stats.Stats)
| 52 | // AggAllNumericCols performs aggregation using given standard aggregation function across |
| 53 | // all splits, for all number-valued columns in the table. |
| 54 | func AggAllNumericCols(spl *table.Splits, stat stats.Stats) { |
| 55 | dt := spl.Table() |
| 56 | for ci, cl := range dt.Columns { |
| 57 | if cl.IsString() { |
| 58 | continue |
| 59 | } |
| 60 | AggIndex(spl, ci, stat) |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | /////////////////////////////////////////////////// |
| 65 | // Desc |