R = result['R'].astype(float)
RMAX = result['Time']
Yuce = math.exp(-((R + RMAX) / RMAX))
运行结果及报错内容
TypeError: cannot convert the series to <class 'float'>
R = result['R'].astype(float)
RMAX = result['Time']
Yuce = math.exp(-((R + RMAX) / RMAX))
TypeError: cannot convert the series to <class 'float'>