AttributeError: module 'matplotlib.pyplot' has no attribute 'arange'
时间: 2023-11-22 14:04:52 浏览: 126
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于导入的matplotlib版本过低导致的。可以尝试更新matplotlib版本来解决这个问题。以下是一个例子:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y = np.sin(x)
plt.plot(x, y)
plt.show()
```
阅读全文