matplotlib模块详解

1subplot和subplots绘制子图 fig, axes = plt.subplots(figsize=(16,9)) axes.set_xlabel('x label') axes.set_ylabel('y label') axes.set_title('title') axes.plot(x, x**2) axes.plot(x, x**3) axes.legend(["y = x
相关文章
相关标签/搜索