在Pandas数据框中转换数据

时间:2018-07-13 14:58:32

标签: python pandas pandas-groupby

我正在将Excel工作表导入数据框。当在python中调用dtypes时,我将该列作为对象。

我正在使用函数将其浮动,然后使用.apply()

当我做

df.groupby(['A'])['B'].sum()

我收到此错误:

 unsupported operand type(s) for +: 'int' and 'datetime.datetime'

我检查了excel工作表,只有数字。如何将这些数据转换为整数或忽略python无法转换的值?

此列中有Nan个值。

0 个答案:

没有答案