It works, but the actual frame as other columns that consists of other data so It won't work for it.
in[21]: df = pd.DataFrame({'A':[u'23:30', u'31:42'],
'B':[25.3,456]})
in[22]: df
out[22] : A B
23:30 25.3
31:42 456.0
in[23]: df.applymap(convert) gives this error AttributeError: ("'numpy.float64' object has no attribute 'split'", u'occurred at index B')
and I can't just convert the specific column.
in[24]" df['A'].applymap(convert) AttributeError: 'Series' object has no attribute 'applymap'
I tried: in
in[24]: colA = df['A']
in[25]: colA.applymap(convert)
but get this error
AttributeError: 'Series' object has no attribute 'applymap'