我正在将Excel工作表导入数据框。当在python中调用dtypes时,我将该列作为对象。
我正在使用函数将其浮动,然后使用.apply()
当我做
df.groupby(['A'])['B'].sum()
我收到此错误:
unsupported operand type(s) for +: 'int' and 'datetime.datetime'
我检查了excel工作表,只有数字。如何将这些数据转换为整数或忽略python无法转换的值?
此列中有Nan
个值。