(yi, color)
| 81 | plt.xticks(fontsize=20) |
| 82 | plt.yticks(fontsize=20) |
| 83 | def draw(yi, color): |
| 84 | plt.plot(np.arange(input.size(1)), yi[:input.size(1)], color, linewidth = 2.0) |
| 85 | plt.plot(np.arange(input.size(1), input.size(1) + future), yi[input.size(1):], color + ':', linewidth = 2.0) |
| 86 | draw(y[0], 'r') |
| 87 | draw(y[1], 'g') |
| 88 | draw(y[2], 'b') |