本周遇到的代码问题:
'float' object cannot be interpreted as an integer
出现原因:range内使用float报错
解决方法:将float转成int或者使用np的arange
AttributeError: module 'datetime' has no attribute 'fromtimestamp'
出现原因:在使用fromtimestamp的时候没有使用datetime.datetime
解决方法:使用datetime.datetime.fromtimestamp
ValueError: cannot mask with array containing NA / NaN values
出现原因:pandas处理df_result['chart'].str.contains('RL')的时候出现了nan的值
解决方法:df_result['chart'].str.contains('RL',na=False)