I have a Series
of strings in which the format is date;value;value
.
I can't use a basic
data.str.slice(stop=7)
as the values can vary in length.
Does anyone have any suggestions for how to slice these stings into 3 columns?
Example:
2008-01;12.759358;6.297382
2008-06;17.44426;8.890847
Thanks!