From b4d5cc2714b58740f496fe0a3dee75dc150915f7 Mon Sep 17 00:00:00 2001 From: AlexanderOtt Date: Thu, 2 Apr 2020 10:05:57 +0200 Subject: [PATCH] remove unnecessary print --- CellData.py | 1 - 1 file changed, 1 deletion(-) diff --git a/CellData.py b/CellData.py index 6fe085e..82bd890 100644 --- a/CellData.py +++ b/CellData.py @@ -150,7 +150,6 @@ class CellData: serial_cors = [] for spiketimes in self.get_base_spikes(): sc = hf.calculate_serial_correlation(spiketimes, max_lag) - print(sc) serial_cors.append(sc) serial_cors = np.array(serial_cors) mean_sc = np.mean(serial_cors, axis=0)