I have many columns A1-A10 (10 in this example)
Each column got polynominal values.
I want to binomalize the columns, but not each on its own, instead i want one attribute for each value, which appears in any of these columns A1-A10?
Example:
Input:
A1 A2 A3
"green" "red" ?
"red" ? "blue"
Output:
A = green A = red A = blue
True True False
False True True