我正在尝试在一组轴上绘制多个图表。
我有一个二维数据数组,想将其分解为 111 个一维数组并绘制它们。到目前为止,这是我的代码示例:
from numpy import *
import matplotlib.pyplot as plt
x = linspace(1, 130, 130) # create a 1D array of 130 integers to set as the x axis
y = Te25117.data # set 2D array of data as y
plt.plot(x, y[1], x, y[2], x, y[3])
这段代码工作正常,但我看不到一种编写循环的方法,该循环将在情节本身内循环。如果我每次都明确地写一个数字 1 到 111,我只能使代码工作,这并不理想!(我需要循环的数字范围是 1 到 111。)