AttributeError: 'numpy.ndarray' object has no attribute 'astypeint'
时间: 2024-05-09 13:13:53 浏览: 213
多线程爬虫出现报错AttributeError: ‘NoneType’ object has no attribute ‘xpath’
AttributeError: 'numpy.ndarray' object has no attribute 'astypeint' 是因为 numpy.ndarray 对象没有 as typeint() 属性或方法。astype() 是一个用于转换数组数据类型的 numpy 方法,但是应该使用 astype(int) 而不是 astypeint()。
如果你想将 numpy 数组转换为 int 类型的数组,可以使用以下代码:
```
import numpy as np
# 创建一个包含 float 类型数据的 numpy 数组
arr = np.array([1.2, 2.3, 3.4])
# 将数组转换为 int 类型的数组
arr = arr.astype(int)
print(arr)
```
输出结果为:
```
[1 2 3]
```
阅读全文