Skip to content

Unfold Column

Description

This activity unfolds the specified column’s values into separate binary columns.

Input

Data

Output

Transformed Data

Configuration Fields

  • Column to unfold The name of the column whose values will be unfolded into binary columns.
  • Include original Keep input columns along with transformed columns when enabled.

Sample Input

IDCategory
1A
2B
3A
4C
5B

Sample Configuration

alt text

Sample Output

IDABC
1100
2010
3100
4001
5010