i wrote a simple function to split a string.
def split2(target):
(key, host) = target.split('_')
return (key, host)
(combined['host'], combined['timestamp']) = combined['key'].apply(split2)
combined['key']
is a pandas series that make of string like 'ibmserver_4/12/2007'
after trying multiple times, i still have the ValueError: too many values to unpack. if i reduce the return parameter in the split2 function to one, that works fine.
Can someone advise what's wrong with the code above and how should I rectify? Many thanks.
A simpler way would be to split the
str
directly with pandas, usingexpand=True
creates separate columns, e.g.:The correct way to assign that to multiple columns is:
To make your function work you would need to convert the returned tuple into a series, e.g.: