ax.scatter怎么把字符作为marker
时间: 2023-12-15 22:05:16 浏览: 136
python matplotlib:plt.scatter() 大小和颜色参数详解
5星 · 资源好评率100%
在`ax.scatter`函数中,可以通过设置`marker`参数来指定散点的形状。如果想要使用字符作为marker,可以将`marker`参数设置为字符串,该字符串表示要使用的字符。
例如,如果想要使用星号(*)作为marker,可以将`marker`参数设置为`'*'`,示例代码如下:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.random.rand(10)
y = np.random.rand(10)
fig, ax = plt.subplots()
ax.scatter(x, y, marker='*')
plt.show()
```
运行上述代码,即可得到使用星号作为marker的散点图。
同理,如果要使用其他字符作为marker,只需要将`marker`参数设置为相应的字符即可。
阅读全文