如何让 Matplotlib 散点图作为一个整体透明显示?
要让 matplotlib 散点图作为一个整体透明显示,我们可以在 scatter() 方法自变量中使用不同的组值来更改 alpha 值。
步骤
设置图形大小并调整各子图之间和周围的间距。
编写一个方法来返回一个分组的 x 和 y 点。
获取组 1 和组 2 的数据点。
使用 scatter() 方法绘制组 1,x 和 y 点,方法是使用 color=green 和 alpha=0.5。
使用 scatter() 方法绘制组 2,x 和 y 点,方法是使用 color=red 和 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()
输出
广告