I have dataframe. Examples:
df1:
Date Fruit Color
2013-11-23 Banana@Orange Yellow
2013-11-24 Orange Orange
2013-11-25 Apple@Strawberry Green
2013-11-24 Celery Green
I want to receive:
df1:
Date Fruit Color
2013-11-23 Banana Yellow
2013-11-23 Orange Yellow
2013-11-24 Orange Orange
2013-11-25 Apple Green
2013-11-25 Strawberry Green
2013-11-24 Celery Green
My only idea is to go through the loop, find the delimiter and build a new array. How else can this be done?