From 4de7dc2520c69a7d8255c0f3f0c912ee721f0c5b Mon Sep 17 00:00:00 2001 From: Thomas de boer Date: Tue, 13 Jul 2021 11:18:13 +0200 Subject: [PATCH] removed unused function --- functions.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/functions.py b/functions.py index 26e8a02..b808b6d 100644 --- a/functions.py +++ b/functions.py @@ -171,15 +171,3 @@ def save_events(data, fname, datapath): header = delimiter.join(names) np.savetxt(datapath + '/' + fname, data, delimiter=delimiter, header=header, comments='') - -def save_classification(gazedata): - """ - saves the calssification and timeline to a csv files. - Each row of the csv, is one gaze event. It includes measures such as : - ["t_start", 't_end', 'duration', 'x_start', 'y_start', 'x_end', 'y_end', 'amplitude', 'mean_vel', 'max_vel'] - - :param data: data to save in the .csv - :param fname: filename for the created .csv - :param datapath: path to save the created .csv - - """