在 Matplotlib 中绘制带有四叶草符号的散点图


若要在 Matplotlib 中绘制带有四叶草符号的散点图,我们可以执行以下步骤:

  • 设置图形尺寸并调整子图之间和周围的填充。
  • 使用 numpy 创建x、yz数据点。
  • 使用scatter()方法绘制x、ys
  • 设置 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()

输出

更新日期: 2021 年 6 月 16 日

235 次浏览

开启您的 事业

完成该课程以获得认证

开始
广告