print( f'''Model Evaluation Score: {round(model.score(x_test,y_test)*100, 3)} Intercept: {round(model.intercept_[0], 2)} Coefficient: {round(model.coef_[0][0], 2)} R² Score: {round(r2_score(y_test, y_pred), 4)} ''')
Model Evaluation Score: 99.425 Intercept: 220.15 Coefficient: 5.55 R² Score: 0.9942
Hosted onDeepnote