I try to find a way how to do following in Knime
I have a file like
| Column |
|----------------|
|a.type_1 = "aaa"|
|a.type_2 = "bbb"|
|a.type_3 = "ccc"|
|b.type_1 = "ddd"|
|b.type_2 = "bbb"|
|b.type_3 = "eee"|
|----------------|
By splitting I have reached
|Name| Type | Description|
|--------------------------|
|a | type_1 | "aaa" |
|a | type_2 | "bbb" |
|a | type_3 | "ccc" |
|b | type_1 | "ddd" |
|b | type_2 | "bbb" |
|b | type_3 | "eee" |
|--------------------------|
But in the end I want to have a table like
|Name| type_1 | type_2 | type_3 |
|-------------------------------|
|a | "aaa" | "bbb" | "ccc" |
|b | "ddd" | "bbb" | "eee" |
|-------------------------------|
Can you please give a tip how to do that? It would be also very helpful in case you share how to do that in python.
Thank you!