Rename columns
Description
Renames the specified columns of the data.
Input
Data only
Output
Transformed data
Configuration fields
Column map Allows input of multiple pairs of column names and their replacement names.
Sample Input
id | category | product | price | in_stock |
---|---|---|---|---|
1 | Electronics | Laptop | 500 | true |
2 | Electronics | Camera | 350 | false |
3 | Electronics | Tablet | 250 | true |
4 | Furniture | Sofa | 600 | true |
5 | Furniture | Bed | 450 | true |
6 | Furniture | Table | 150 | false |
Sample Configuration
Sample Output
index | category | result | price | in_stock |
---|---|---|---|---|
1 | Electronics | Laptop | 500 | true |
2 | Electronics | Camera | 350 | false |
3 | Electronics | Tablet | 250 | true |
4 | Furniture | Sofa | 600 | true |
5 | Furniture | Bed | 450 | true |
6 | Furniture | Table | 150 | false |