From a4136672173210f08c5ab4ba3feb7cdb51819e45 Mon Sep 17 00:00:00 2001 From: Pavlo Bazilinskyy Date: Sun, 29 Dec 2024 21:00:58 +0200 Subject: [PATCH] Drop id from corr matrix --- trust/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trust/run.py b/trust/run.py index 8762feae..687e65cd 100644 --- a/trust/run.py +++ b/trust/run.py @@ -282,7 +282,7 @@ pretty_text=True, save_file=True) # columns to drop in correlation matrix and scatter matrix - columns_drop = ['description', 'video_length', 'min_dur', 'max_dur', 'kp', 'events', 'events_name', + columns_drop = ['id', 'description', 'video_length', 'min_dur', 'max_dur', 'kp', 'events', 'events_name', 'events_description', 'events_id', 'description', 'video_name'] # set nan to -1 df = mapping.fillna(-1)