📜  如何移动 x 轴 matplot lib - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:06.905000             🧑  作者: Mango

代码示例1
ax2 = pyplot.subplot(212)
true_targets = pyplot.plot(test_y[:, 0, :])
guessed_targets = pyplot.plot(test_y_hat[:, 0, :], linestyle='--')