1 questions
fig, ax = plt.subplots(5, 2)ax[0, 0].plot(temp[:144], 'r') ax[0, 1].plot(temp[144:144*2], 'r') ax[1, 0].plot(temp[144*2:144*3], 'y') ax[1, 1].plot(temp[144*3:144*4], 'y') ax[2, 0].plot(temp[144*4:144*...
© 2024 OneMinuteCode. All rights reserved.