在 Matplotlib 中绘制带有四叶草符号的散点图
若要在 Matplotlib 中绘制带有四叶草符号的散点图,我们可以执行以下步骤:
- 设置图形尺寸并调整子图之间和周围的填充。
- 使用 numpy 创建x、y和z数据点。
- 使用scatter()方法绘制x、y和s。
- 设置 X 和 Y 轴标签。
- 在绘制的左上角放置图例。
- 使用show()方法显示图形。
示例
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(0.0, 50.0, 2.0) y = x ** 1.3 + np.random.rand(*x.shape) * 30.0 s = np.random.rand(*x.shape) * 800 + 500 plt.scatter(x, y, s, c=x, alpha=0.5, marker=r'$\clubsuit$', label="Legend", cmap="plasma") plt.xlabel("X-Axis") plt.ylabel("Y-Axis") plt.legend(loc='upper left') plt.show()
输出
广告