DescColumn performs aggregation using standard statistics across all splits, and stores results in the Splits. Column is specified by name -- see Try for error msg version.
(spl *table.Splits, column string)
| 85 | // all splits, and stores results in the Splits. |
| 86 | // Column is specified by name -- see Try for error msg version. |
| 87 | func DescColumn(spl *table.Splits, column string) { |
| 88 | dt := spl.Table() |
| 89 | if dt == nil { |
| 90 | return |
| 91 | } |
| 92 | DescIndex(spl, dt.ColumnIndex(column)) |
| 93 | } |
| 94 | |
| 95 | // DescColumnTry performs aggregation using standard statistics across |
| 96 | // all splits, and stores results in the Splits. |
no test coverage detected