columnRename
Description
Returns a view of the given dataset with the columns renamed. The number of new names must match exactly with the existing column count. Since 7.8.1.
Syntax
columnRename( dataset, newName, newName, newName... )
Examples
columnRename(twoColDataset,
"colOne"
,
"colTwo"
)
// returns a Dataset with columns ["colOne", "colTwo"]