python scatter显著性打点
时间: 2023-11-12 14:59:48 浏览: 275
在python中,使用scatter绘制散点图的实例
5星 · 资源好评率100%
您可以使用matplotlib库中的scatter函数来实现python scatter显著性打点。具体步骤如下:
1. 导入matplotlib库
```python
import matplotlib.pyplot as plt
```
2. 准备数据
```python
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
s = [100, 200, 300, 400, 500] # 显著性大小
```
3. 绘制散点图
```python
plt.scatter(x, y, s=s)
plt.show()
```
其中,x和y分别表示散点图的横纵坐标,s表示散点的大小,可以根据需要自行调整。
阅读全文