Skip to content
Advertisement

Pandas – Create a DF with all the values from 2 columns

I have a DF similar to the below. What I want to do is to take the SKUs from SKU1 and SKU2 and create a separate DF with all possible SKU values. It seems simple but I’m having some trouble.

DF

SKU1 SKU2
66FS 6dhs
b87w ssftv
yy5hf
y346d

Desired Output

All_SKUs
66FS
b87w
yy5hf
6dhs
ssftv
y346d

Advertisement

Answer

If order doesn’t matter, stack:

JavaScript

output:

JavaScript

Else, melt:

JavaScript

output:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement