i have DataFrame column which i want to split. For example:
0 1 2
0 a b c-d-e
1 f g h-i-j
2 k l m-n-o
The information is stored in a DataFrame. How can I change the dataframe to this?
0 1 2 3 4
0 a b c d e
1 f g h i j
2 k l m n o
Thank you