如何使 Matplotlib 散点图作为一个组透明?

matplotlibpythondata visualization

要使 matplotlib 散点图作为一个组透明,我们可以使用不同的组值更改 scatter() 方法参数中的 alpha 值。

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 制作一个方法返回分组的 x 和 y 点。

  • 获取第 1 组和第 2 组数据点。

  • 使用 color=green 和 alpha=0.5 的 scatter() 方法绘制组 1、x 和 y 点。

  • 使用 color=red 的 scatter() 方法绘制组 2、x 和 y 点alpha=0.5。

  • 要显示图形,请使用 show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
def get_group_points():
   return np.random.rand(100), np.random.rand(100),
group_1 = get_group_points()
group_2 = get_group_points()
plt.scatter(group_1[0], group_1[1], color='green', alpha=0.5, s=100)
plt.scatter(group_2[0], group_2[1], color='red', alpha=0.5, s=100)
plt.show()

输出


相关文章