如何在 Matplotlib 中先绘制线条,最后绘制点?
若要先绘制线条,最后绘制点,我们可以采取以下步骤 -
使用 numpy 创建 x 点、y1 点和 y2 点,绘制线条。
使用 plot() 方法和 x、y1 和 y2 点绘制曲线。
使用 scatter 方法绘制散点。
使用 show() 方法显示图形。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True xpoints = np.linspace(1, 1.5, 10) y1points = np.log(xpoints) y2points = np.exp(xpoints) plt.plot(xpoints, y1points) plt.plot(xpoints, y2points) for i in xpoints: plt.scatter(i, np.random.randint(10)) plt.show()
输出
广告