Transform array-values to multiple categories

Hello,

I have array-values like this in my data:

tags
[“eventjob”]
[“promotionjob”, “studentenjob”, “gastrojob”]
[“messejob”]
[“messejob”]
[“messejob”, “studentenjob”, “hostessjob”]
[“promotionjob”]
[“promotionjob”, “eventjob”, “hostessjob”]
[“promotionjob”, “studentenjob”]

I want to transform the string-values in the array to caregory-number-values so I can make a linear regression. So I think I need n single columns for each string which holds 1/0 if the array contains this value.

How can I transform/prepare the data this way?

Thanks for some help!

Best regards,

Timo

Hi @iparker !! Welcome to the forum. In order to do hot-encoding you can use then one to many node:

image

3 Likes

Hi @iperez, thanks a lot for your reply!

I tried the one-to-many-node, but it seems that it’s not exactly what I’m looking for.

It seems that every complete cell-value is handled as a new column, not if the single tag appears in the cell.

I mean: I dont want one column [“promotionjob”, “studentenjob”, “gastrojob”] but three column for the single tag values.

Hope you understand what I mean.

Best regards,

Timo

Based on the example that you have given in the first post, can you please draft your expected output? This makes it for people easier to jump in and help you out.

I see that your “array” is a flat string which changes things a bit.

3 Likes

Hi,

This requires a little bit of data manipulation. The following workflow should work replacing the table creator with your dataset

Hot encoding tags.knwf (28.1 KB)

1 Like

Hi @iperez,

thanks a lot for your reply and your workflow.

This works very well and is a great learning for me!

Thanks a lot!

Best regards,

Timo

2 Likes

Hi @iparker,

here is a slightly cleaner / advanced solution based on your data which might be ready to use:

Best
Mike

1 Like

Hi Mike,

thanks for your reply and your workflow. This works pretty good too!

Best regards,

Timo

Thanks a lot @iparker. I’d appreciate if you could mark the solution of your choice by clicking the solution icon in the bottom right of the corresponding post. Cheers, Mike

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.