f, ax = plt.subplots() # we manually make a figure and axis ax.plot(x,y, label='sin(x)') # it's the axis who plots ax.legend() ax.set_title('Harmonic') # we ...
確定! 回上一頁