From 8636c1fd73a492b687eb6d963b808cc799ccaf62 Mon Sep 17 00:00:00 2001 From: mvieitesdiaz Date: Tue, 14 Jul 2020 12:16:29 +0200 Subject: [PATCH] fix sum --- solution.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/solution.py b/solution.py index 2d7c775..cbf5977 100755 --- a/solution.py +++ b/solution.py @@ -6,9 +6,8 @@ def predict(data): """ get two colums from `df` and returns the predicted ouput as a column (pd.Series) - TODO: modify it """ - result = data['col1'] - data['col2'] + result = data['col1'] + data['col2'] return result