AttributeError: 'SoftI2C' object has no attribute 'read_i2c_block_data'
时间: 2023-07-14 08:52:15 浏览: 128
这个错误是因为你的 `SoftI2C` 对象没有定义 `read_i2c_block_data` 方法。这个方法通常是用于读取 I2C 设备的数据块。你需要检查你的代码中是否正确地使用了 `SoftI2C` 对象,并确保你的设备支持该方法。如果你的设备不支持该方法,你可以尝试使用其他方法来读取设备数据。
相关问题
AttributeError: 'DataFrame' object has no attribute 'sort_valus'
以下是关于AttributeError: 'DataFrame' object has no attribute 'sort_values'的错误处理方法:
```python
import pandas as pd
# 读取Excel数据
data = pd.read_excel(r"C:\Users\ASUS\Desktop\0012\data7.1.2.xlsx")
# 查看score列的描述性统计信息
data.sort_values('score')
```
阅读全文