jupyter notebook 中数据类型错误问题
数据类型:
代码:
for i in range(12,16):
temp[:,i-12] = data.iloc[:,i]-data.iloc[:,i-1]/data.iloc[:,i-1]
#x['主营业务增长率'] = np.mean(temp,axis=1)
报错:
TypeError: unsupported operand type(s) for -: 'str' and 'float'
问题:
1.怎么修正?
2.temp[],内置在for i in range(12,16)怎么理解?