TypeError: loop of ufunc does not support argument 0 of type float which has no callable radians method
经查询了解到:
查询得知问题是数据列不是数值类型,而 np.log() 函数需要输入数值数据。查看我的数据发现数据对象均为 object,因此需要将数据框中的 object 数据转换为 float 类型,文章来源:https://www.toymoban.com/news/detail-763907.html
进行如下操作:文章来源地址https://www.toymoban.com/news/detail-763907.html
df = pd.DataFrame(df, dtype=float)
print(np.log(df))
到了这里,关于TypeError: loop of ufunc does not support argument 0 of type float which has no callable radians met的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!