如何获取matplotlib.pyplot.scatter默认的蓝色颜色?
散点图默认的颜色是蓝色。要获取matplotlib散点图默认的蓝色颜色,可以使用 annotate() 方法注释它们。
步骤
- 使用 subplots() 方法创建图和一组子图。
- 在(-1,1)位置绘制散点。
- 为该点添加一些标签。
- 在(-0.9,1)位置绘制散点。
- 为该点添加一些标签。
- 在(1.9,1)位置绘制散点。
- 为该点添加一些标签。
- 使用xlim和ylim方法缩放x和y轴。
- 要显示图,使用 show() 方法。
例子
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
ax.scatter(-1, 1)
ax.annotate("默认颜色", xy=(-0.9, 1))
ax.scatter(1, 1, c='#1f77b4')
ax.annotate("使用十六进制", xy=(1.1, 1))
ax.set_xlim(-2, 3)
ax.set_ylim(-1, 2)
plt.show()