I need to generate a output in talend such that it would randomly shuffle the set of data within the same column, from a normal csv file input. To illustrate, the original input file structure would be like this:
1 2 3 4
A A A A
B B B B
C C C C
And output would become something like this:
1 2 3 4
A B A C
B C C A
C A B B
I wonder if there's exact function or talend models from couple different functions. Much appreciated with any thoughts.