columnRearrange

Description

Returns a view of the given dataset with the given columns in the order specified. Columns may be omitted in order to filter out columns from the original dataset. Since 7.8.1.

Syntax

columnRearrange( dataset, col, col, col... )

Examples
 columnRearrange(fiveColDataset, "secondCol", "thirdCol", "firstCol") // returns a 3 column Dataset, where the columns are in the given order