I have the following data frame:
df = pd.DataFrame()
df['Name'] = ['A','B','C']
df['Value'] = ['2+0.5','1+0.2','2-0.06']
What I wanted to do is to split the value and assign to two new columns. It means my desired output will be as follow: The element in value column will be splitted into two and I will re-use the sign in the columns.
I am very grateful for your advice.
Thanks.