module 'matplotlib.pyplot' has no attribute 'find_peaks'
时间: 2023-11-11 19:03:02 浏览: 140
Matplotlib.pyplot 三维绘图的实现示例
这个错误通常是因为您的 matplotlib 版本太低导致的。您可以尝试升级 matplotlib 到最新版本,或者使用以下代码替代 `find_peaks` 函数:
```python
from scipy.signal import find_peaks
```
这个函数与 `matplotlib.pyplot.find_peaks` 的功能相同,但是来自于 SciPy 库。
阅读全文