Ho everyone,
I want to create a dataframe from list, where each element from a list is a column. Example:
Col
0 A_1
1 A_2
2 A_1
3 B_3
4 B_2
I want to have a dataframe like this
Col1 . col2
0 A . 1
1 A . 2
2 B . 3
3 B . 2
....
split by the '_' and make two columns and remove the duplicate
Thanks in advance