使用 Python 的 Matplotlib 向散点图添加一条线

matplotlibpythondata visualization

要使用 Python 的 Matplotlib 向散点图添加一条线,我们可以采取以下步骤 −

  • 设置图形大小并调整子图之间和周围的填充。
  • 初始化变量 n,表示数据点的数量。
  • 使用 scatter() 方法绘制 xy 数据点。
  • 使用 plot() 方法绘制一条线。
  • 使用 xlim() 方法限制 X 轴。
  • 要显示图形,请使用 show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

n = 100
x = np.random.rand(n)
y = np.random.rand(n)

plt.scatter(x, y, c=x)
plt.plot([0.1, 0.4, 0.3, 0.2])
plt.xlim(0, 1)

plt.show()

输出


相关文章