如何在 Matplotlib 中使用不断增大的标记来绘制散点图?


要使用增加的标记大小绘制散点图,我们可以采取以下步骤:

步骤

  • 创建 x 和 y 数据点
  • 为获取增加的标记大小,制作一个数字列表。
  • 使用**scatter**方法绘制散点图。
  • 使用 show() 方法显示图片。

示例

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = [0, 2, 4, 6, 8, 10]
y = [0] * len(x)
s = [10 * 4 ** n for n in range(len(x))]
plt.scatter(x, y, s=s, c='red')
plt.show()

输出

更新于: 06-May-2021

698 浏览

开始您的 职业生涯

通过完成课程获得认证

开始
广告