使用函数&#39; math.radians()&#39;无法将系列转换为<class'float'=“”>

时间:2017-08-09 03:17:00

标签: python pandas math

这是我的代码,为什么会发生错误?

This is my code,why the error occurs?

1 个答案:

答案 0 :(得分:1)

您正在尝试使用专为浮点数设计的函数来接受系列。

将你的d =弧度(c)改为

d = c.map(radians)

将弧度函数应用于c系列中的每个值。