gpt4 book ai didi

python - plt.scatter 列表中的二维数组元素

转载 作者:行者123 更新时间:2023-12-01 12:03:44 26 4
gpt4 key购买 nike

我有一个包含数组元素的列表:

[array([2.40460915, 0.85513601]), array([1.80998096, 0.97406986]), array([2.14505475, 0.96109123]), 
array([2.12467111, 0.93991277])]

我想使用 mathplotlib 绘制该列表,以便我遍历列表中的每个元素,并使用 plt.scatter(x,y)< 绘制 ith<​​ 元素 其中 x 是数组中第 位置的第一个元素,与第二个元素 y 类似。

我不是很熟悉如何在 python 中做这个索引,无论我如何尝试解决这个问题,我都无法得到一个情节。

for i in range(len(list)):
# plt.scatter(x,y) for x,y as described above

谁能告诉我一个简单的方法来做到这一点?

最佳答案

from numpy import array
import matplotlib.pyplot as plt

a = [array([2.40460915, 0.85513601]), array([1.80998096, 0.97406986]), array([2.14505475, 0.96109123]),
array([2.12467111, 0.93991277])]

# *i unpacks i into a tuple (i[0], i[1]), which is interpreted as (x,y) by plt.scatter
for i in a:
plt.scatter(*i)

plt.show()

关于python - plt.scatter 列表中的二维数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59771134/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com