How can I update a dataset that was already been hot encoded once? For example, there are two columns A and B both with similar data that needs to be hot encoded. I understand using the One to Many Node to hot encode and execute hot encoding on Column A. But how can I then take the data that is in Column B to update the newly formed hot encoded columns?
In other words, what is a good way to perform hot encoding when there are multiples values to be encoded and not just 1? Thanks!
You’ll notice that we’ve just added extra columns for each of the original columns we want to encode.
If you don’t have the initial data, you can just encode the column you do have, append these new columns to the already encoded table, and modify the names so that the source column of each set of encoded values is obvious.