#Actual vs Predicted c = [i for i in range(1,63,1)] fig = plt.figure() plt.plot(c,y_test, color="blue", linewidth=2.5, linestyle="-") plt.plot(c,y_pred, color="red", linewidth=2.5, linestyle="-") fig.suptitle('Actual and Predicted', fontsize=20) # Plot heading plt.ylabel('Price', fontsize=16) # Y-label