我有一个DataFrame df
,其中col1包含浮点数。经过一些处理后,浮点数以某种方式转换为1x1 numpy.ndarray
。如何将它们转换回简单的浮点数?
df['col1'] = df_temp['col1'].values[ind.ravel()]
print df['col1']
[0.145833333333]
[0.247222222222]
[0.181944444444]
print type(df['col1'])
<type 'numpy.ndarray'>