4
從樣本數據幀df
像開始的回報列:大熊貓 - 指數值
a,b
0,0.71
1,0.75
2,0.80
3,0.90
我會b
列的指數值添加一個新列。到目前爲止,我嘗試:
df['exp'] = math.exp(df['b'])
但這種方法的返回值:
"cannot convert the series to {0}".format(str(converter)"
TypeError: cannot convert the series to <type 'float'>
是否有應用math
功能,一整列的方法嗎?