fig = plt.figure(figsize=(9, 5)) plt.subplot(1, 2, 1) plt.yscale('log') plt.plot(epochs, loss, linestyle='--', linewidth=3, color='orange', alpha=0.7, label='Train Loss') plt.plot(epochs, v_loss, linestyle='-.', linewidth=2, color='lime', alpha=0.8, label='Valid Loss') plt.ylim(0.3, 100) plt.xlabel('Epochs', fontsize=11) plt.ylabel('Loss', fontsize=12) plt.legend(fontsize=12) plt.subplot(1, 2, 2) plt.plot(epochs, acc, linestyle='--', linewidth=3, color='orange', alpha=0.7, label='Train Acc') plt.plot(epochs, v_acc, linestyle='-.', linewidth=2, color='lime', alpha=0.8, label='Valid Acc') plt.xlabel('Epochs', fontsize=11) plt.ylabel('Accuracy', fontsize=12) plt.legend(fontsize=12) plt.tight_layout() plt.show()这是一行输出两个图的代码,怎样实现两个图分别输出?
时间: 2023-12-04 13:02:50 浏览: 341
matplotilb中fig,ax = plt.subplots()的使用
这段代码使用了subplot函数将两个图绘制在一个Figure中的两个子图中,其中第一个参数1表示行数,第二个参数2表示列数,第三个参数1表示在第一行第一列绘制图形,第三个参数2表示在第一行第二列绘制图形。如果想要分别输出两张图,可以将两个子图分别绘制在两个Figure中,如下所示:
```python
fig1 = plt.figure(figsize=(6, 5))
plt.yscale('log')
plt.plot(epochs, loss, linestyle='--', linewidth=3, color='orange', alpha=0.7, label='Train Loss')
plt.plot(epochs, v_loss, linestyle='-.', linewidth=2, color='lime', alpha=0.8, label='Valid Loss')
plt.ylim(0.3, 100)
plt.xlabel('Epochs', fontsize=11)
plt.ylabel('Loss', fontsize=12)
plt.legend(fontsize=12)
plt.show()
fig2 = plt.figure(figsize=(6, 5))
plt.plot(epochs, acc, linestyle='--', linewidth=3, color='orange', alpha=0.7, label='Train Acc')
plt.plot(epochs, v_acc, linestyle='-.', linewidth=2, color='lime', alpha=0.8, label='Valid Acc')
plt.xlabel('Epochs', fontsize=11)
plt.ylabel('Accuracy', fontsize=12)
plt.legend(fontsize=12)
plt.show()
```
这样就可以分别输出两张图了。注意,需要将Figure的大小调整为适当的大小,以便图像在输出时不会过于拥挤或过于稀疏。
阅读全文