如何让 Matplotlib.pyplot 停止强制标记样式?
matplotlibpythondata visualization
要让 matplotlib.pyplot 停止强制标记样式,我们可以采取以下步骤 −
- 设置图形大小并调整子图之间和周围的填充。
- 使用 numpy 创建随机 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y 数据点,使用 "r*" 标记,markersize=10。
- 要显示图形,请使用 show() 方法。
示例
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.random.rand(20) y = np.random.rand(20) plt.plot(x, y, 'r*', markersize=10) plt.show()