python中的Matplotlib,使用从另一个函数返回的数据来绘图

时间:2015-11-06 02:50:42

标签: python-3.x matplotlib

我有一个返回元组列表的函数,每个元组的形式为(x,y),其中x和y是数字。我需要在折线图中为整个列表绘制每个x和y数字。我从未使用matplotlib,所以我不知所措。

1 个答案:

答案 0 :(得分:0)

from matplotlib import pyplot as plt
x_coordinates = list()
y_coordinates = list()
.....
.....
x,y = function()
x_coordinates.append(x)
y_coordinates.append(y)
plt.plot(x_coordinates,y_coordinates)
plt.show()

我假设您已经在使用循环来获取x,y值。

我希望这能回答你的问题。