python绘图
matplotlib简单绘图注意:使用Jupyter notebook时,在每个单元格运行后,图表被重置,因此对于更复杂的图表,你必须将所有的绘图命令放在单个的notebook单元格中。fig = plt.figure(figsize = (8, 6))# 绘制2*2图形,选择第一个ax1 = fig.add_subplot(2, 2, 1)ax2 = fig.add_subplot(2, 2, 2)ax3 = fig.add_subplot(2, 2, 3)plt.plot(np.
原创
2021-04-13 14:40:48 ·
959 阅读 ·
0 评论