From 93b9265b5d1c3d85cd5713900c4c1e4c769f80fe Mon Sep 17 00:00:00 2001 From: Lee Stott Date: Fri, 24 Apr 2026 12:00:34 +0100 Subject: [PATCH] Update 2-Regression/3-Linear/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- 2-Regression/3-Linear/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-Regression/3-Linear/README.md b/2-Regression/3-Linear/README.md index e0b8ac8af..b3f290572 100644 --- a/2-Regression/3-Linear/README.md +++ b/2-Regression/3-Linear/README.md @@ -319,7 +319,7 @@ X = pd.get_dummies(new_pumpkins['Variety']) \ y = new_pumpkins['Price'] ``` -Here we also take into account `City` and `Package` type, which gives us RMSE 2.84 (10%), and determination 0.94! +Here we also take into account `City` and `Package` type, which gives us RMSE 2.84 (10.5%), and determination 0.94! ## Putting it all together