使用 Matplotlib 中的绘图方法绘制散点图

要使用 matplotlib 中的 plot 方法绘制散点,我们可以采取以下步骤 -

  • 使用 numpy 创建随机数据点(x1 和 x2)。

  • 使用plot()标记大小为 20 和绿色的方法绘制 x1 数据点。

  • 使用plot()标记大小为 10 和红色的方法绘制 x2 数据点。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x1 = np.random.randn(20)
x2 = np.random.randn(20)
plt.plot(x1, 'go', markersize=20)
plt.plot(x2, 'ro', ms=10)
plt.show()