使用 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()