TypeError: histogram() got multiple values for argument 'bins'
时间: 2024-05-12 17:15:38 浏览: 262
TypeError: ‘required’ is an invalid argument for positionals 的解决方法
5星 · 资源好评率100%
这个错误通常是因为在调用 `histogram()` 函数时,给定了多个值来设置 `bins` 参数。`bins` 参数指定直方图中的条形数。请确保只给 `bins` 参数传递一个值。
例如,下面的代码会导致该错误:
```python
import numpy as np
import matplotlib.pyplot as plt
data = np.random.randn(1000)
plt.hist(data, bins=10, bins=20)
```
正确的代码应该是这样的:
```python
import numpy as np
import matplotlib.pyplot as plt
data = np.random.randn(1000)
plt.hist(data, bins=20)
```
阅读全文