From 60481e9ac39b2ed897aa3c686300c67ee982fb46 Mon Sep 17 00:00:00 2001 From: jamieveitch Date: Mon, 19 Dec 2022 02:07:28 +0000 Subject: [PATCH] removed filter (no point at the moment) --- analysis/preprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/analysis/preprocess.py b/analysis/preprocess.py index 900681f..95fc770 100644 --- a/analysis/preprocess.py +++ b/analysis/preprocess.py @@ -62,6 +62,7 @@ def preprocess(games: pd.DataFrame) -> pd.DataFrame: ranked_games.set_index('matchID', inplace=True) ranked_games = ranked_games.loc[has_even_teams.intersection(has_damage).intersection(has_highlander)] + ranked_games = games.copy().set_index('matchID') recent_names = player_names(games=ranked_games) ranked_games['name'] = ranked_games['uid'].replace(recent_names)