I have the following code:
pyplot.plot(np.arange(1,39) , train, color = "blue")
pyplot.plot(np.arange(39,60), test, color = "red")
pyplot.show()
But I can not plot test as a continuation of train.
And I get this error:
ValueError: x and y must have same first dimension, but have shapes (21,) and (23, 1)