subplot tag

1 questions


1 answers
109 views
0
Python subplot. I'm asking you a question

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*...

2 years ago

© 2024 OneMinuteCode. All rights reserved.