import matplotlib.pyplot as plt fig, axes = plt.subplots(nrows=4, ... for i in range(5): temp = 510 + i ax = plt.subplot(temp) plt.plot(x,y) ...
確定! 回上一頁