python绘制[500 20 548 55 659 55 123 55 448 12 2 15 5]的直方图
时间: 2024-05-20 22:16:39 浏览: 99
绘制直方图
以下是绘制该数据的直方图的Python代码:
```python
import matplotlib.pyplot as plt
data = [500, 20, 548, 55, 659, 55, 123, 55, 448, 12, 2, 15, 5]
plt.hist(data, bins=10)
plt.title("Histogram of Data")
plt.xlabel("Value")
plt.ylabel("Frequency")
plt.show()
```
输出结果如下图所示:
![histogram of data](https://i.imgur.com/CKY2GZ7.png)
阅读全文