fig = plt.figure() # create a figure object ax = fig.add_subplot(1, 1, 1) # create an axes object in the figure ax.plot([1, 2, 3, 4]) ax.set_ylabel('some ...
確定! 回上一頁