Guest User

Untitled

a guest
Feb 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. plt.figure(figsize=(15,10))
  2. plt.plot(Y_test,label = 'Test')
  3. plt.plot(Predict, label = 'Prediction')
  4. plt.legend(loc='best')
  5. plt.show()
Add Comment
Please, Sign In to add comment